
function rotate() {
	
			if (($("#hh_informer").hasClass("animate")) & ($("#hhi_body").hasClass("animated"))) {
				$(".hhv:last").hide().delay(7000).insertBefore(".hhv:first").fadeIn("slow",arguments.callee);
			};			
};

google.load("jquery", "1.4.0");
 
google.setOnLoadCallback(function() {
		//document.write("JS Loaded!");
		
		$(".hhv_description").hide();
		            
		            
		if ($("#hh_informer").hasClass("animate")) {
				
				$("#hhi_body").addClass("animated");    	

				rotate();
				
		};
		
		    	
		$("#hh_informer").hover(function() {
    		$("#hhi_body").removeClass("animated");				
		}, function() { 
    		$("#hhi_body").addClass("animated");
    		rotate();		
		});						    																										 	
});





