jQuery(document).ready(function($){
	
	// efx menu
	var mn = $('#mn a')
	mn.each(function(){
		$(this).hover(
			function(){
				$(this).stop().animate({'opacity':0},800)
			},
			function(){
				$(this).stop().animate({'opacity':1},800)
			}
		)
	})

	// dettaglio prodotti
	
	var el = $('#page .dx h4')
	el.each(function(){
		if($(this).find('a').length > 0) {
			var lnk = $(this).find('a').attr('href')
			$(this).css('cursor','pointer').click(function(){
				window.location=lnk
				$(this).find('a').trigger('hover')
			})
		}
	})
})
