/* Modified by Attila Pest, 2009-01-05 05:38:37 EST */



	$(document).ready(function() { 
      
      
      $("#what").hover(
        function(){
		 		 $("#what_is_this").show("slow");
		    },
		    function () {
         $("#what_is_this").hide("slow");
        }
      );
      /*
      $("#fromAddress").focus(function(){
		 			$(this).select();
		  });
		 
      if (geoip_country_code()=='US') {
        $("#fromAddress").val(geoip_postal_code());
        to =  geoip_postal_code();
		  } else {
        $("#fromAddress").val("33454");
        to = 33454;  
      } */
	}); 	

