  $(document).ready(function() {
	if ($("body.not-logged-in").length) {
	  if (!(element = Drupal.settings.wind.element))
	  	return;
	  var base_path = Drupal.settings.wind.basePath;

	  $(element).hover(
	    function() { $(this).dblclick(
	      function() { document.location = base_path + "user/wind"; }
	    )},
	    function() {  }
	  );
	}
  });
