jQuery(function() {
	init_effetti_top_menu();
	init_effetto_bottone_accessoclienti();
})

function init_effetti_top_menu() {
	jQuery('ul.mainmenutop li a').bind('mouseenter',function() {
		var target = jQuery(this).parent('li').find('.effetto').animate({
			opacity: 0.5
		},100);
	})

	jQuery('ul.mainmenutop li a').bind('mouseleave',function() {
		var target = jQuery(this).parent('li').find('.effetto').animate({
			opacity: 0
		},100);
	})	
	
}

function init_effetto_bottone_accessoclienti() {
	jQuery('.bottoneaccessoclienti').bind('mouseenter',function() {
		var target = jQuery('.effettobottoneaccessoclienti').animate({
			opacity: 0.5
		},100);
	})

	jQuery('.bottoneaccessoclienti').bind('mouseleave',function() {
		var target = jQuery('.effettobottoneaccessoclienti').animate({
			opacity: 0
		},100);
	})	
	
}
