$(document).ready(function () {  

  $("h3").animate({opacity: 1}, 2500 ); 
  $('#endemictest').tabs({fx:{opacity: "toggle"}})  
                                       .tabs("rotate", 5000,true);  
                                       
                                       
}); 

 
$(document).ready(function(){
	$(".oferte-web").hover(function() {
 $(this).animate({opacity: 0.1}, 200 );  
 $(this).animate({opacity: 1}, 200 );  
			}, 
            
            function() {
	});
});


 
