
var pulsanti=new Array("home","thespot","thestructure","generalinfo","eccephoto", "sponsor", "eccevideo");


$(document).ready(function(){
	
	for(i=0;i<=6;i++)
		{
		if(blocco!=pulsanti[i]){movimento("."+pulsanti[i])}
		}
	
/*	 QUESTA ERA QUELLA NORMALE */
function movimento(cosa){	
	$(cosa)
		.mouseover(function(){
			$(this).stop().animate({backgroundPosition:"(0px 0px)"}, {duration:300})
		})
		.mouseout(function(){
			$(this).stop().animate({backgroundPosition:"(0px -80px)"}, {duration:250})
		})
		
	}
	
	

	$(".footer-content")
		.mouseover(function(){
			$(".footer").stop().animate({bottom:"0px"}, {duration:300})
		})
		.mouseout(function(){
			$(".footer").stop().animate({bottom:"-60px"}, {duration:250})
		})	


	
	
	
});


/*

//QUESTE  QUELLA CON IL RIMBALZO

function movimento(cosa){	
	$(cosa)
		.mouseover(function(){
			$(this).animate({backgroundPosition:"(0px 98px)"},250,function(){rimbalzo(cosa)})	
		})
		.mouseout(function(){
			$(this).stop().animate({backgroundPosition:"(0px 0px)"}, {duration:300})
		})
		
	}
	
	
	
function rimbalzo(cosa_1){
	$(cosa_1).animate({backgroundPosition:"(0px 82px)"}, {duration:300})


}	
	
	*/
	
	
	
	
