$(document).ready(function(){
						  
	
	$('#gallery a').hover(
    	function(){
   			$(this).find('.thumb-hover').css('display', 'block');
    	},
    	function(){
			$(this).find('.thumb-hover').css('display', 'none');
		}
	);
	
	$('#gallery a.selected').find('.thumb-hover').each(function(){
		$(this).css('display', 'block');
	});

	
});

$(window).load(function(){
	$('.boxcat').hover(
		function(){
			$(this).children('h4').stop(true,true).fadeTo('fast', 0);
			$(this).children('.menu').stop(true,true).fadeTo('fast', 1);
			$('.boxcat').not(this).children('.menu').stop(true,true).fadeTo('fast', 0);
			},
		function(){
			$(this).children('h4').fadeTo('fast', 1);
			$(this).children('.menu').fadeTo('fast', 0);
			}
	);
	
	function addHoverFade(parent, child){
		
		$(parent).live('mouseover',
		function(){
			$(this).children('h4').stop(true,true).fadeTo('fast', 0);
			$(this).children(child).stop(true,true).fadeTo('fast', 1);
		});
		
		$(parent).live('mouseleave',
		function(){
			$(this).children('h4').fadeTo('fast', 1);
			$(this).children(child).fadeTo('fast', 0);
		});
	}
	
	$(function(){				
		/*addHoverFade('#main div.boxcat', '.menu');*/		
		addHoverFade('#main div.boxcat-prod', '.menu-prod');	
	});					
});
