jQuery(document).ready(function($){
	$('nav li').each(function(){
		if(!$(this).hasClass('active')) { 
			$(this).find('span').css('opacity',0)
			$(this).hover(function(){
				$(this).find('span').stop().show().animate({'opacity':1})
				$(this).find('a').stop().animate({'color':'#fff'})
			},function(){
				$(this).find('span').stop().animate({'opacity':0},function(){ $(this).find('span').hide() })
				$(this).find('a').stop().animate({'color':'#5b78aa'})
			})
		}
	})
	
	$('#page .elenco-prod .item a.bt-galleria').each(function(){
		$(this).hover(function(){
			$(this).stop().animate({'color':'#5B78AA'},300)
		},function(){
			$(this).stop().animate({'color':'#000000'},300)
		})
	})
	
	$('#page.noleggio input[name=prosegui],#page.noleggio input[name=indietro],#page.noleggio .table-riepilogo-totale td input[type=submit],#page.noleggio .form-style .ico-cal,#page #form_contatti input[type=submit]').hover(function(){
		$(this).stop().animate({'opacity':0.7},300)
	},function(){
		$(this).stop().animate({'opacity':1},300)
	})
})
