$(document).ready(function(){
	$('#menu ul ul').css(
		'display','none'
	);
	
	$('#menu ul li').hover(function(){

	$(this).find('a.categoria').css({
		background:			'#F8F8F8',
		color:		 		'#444',
		'margin-left':		'0px',
		'margin-right':		'0px',
		'border':			'solid 1px #00788A'
		})
	$(this).find('ul').css({display: "block", opacity:'0'})
	$(this).find('ul').dropShadow({left: 1, top: 0, blur: 1, color: "#000", swap: false, opacity: 0.6})
	$(this).find('ul').stop().animate({
		'opacity':1
		},"fast")

	}, function(){
	$(this).find('a.categoria').css({
		background:			'none',
		color:		 		'#FFF',
		border:				'none',
		'margin-left':		'1px',
		'margin-right':		'1px'
	});

	$(this).find('ul').css({display: "none"}); 
	$(this).find('ul').removeShadow();
	$(this).find('ul').stop().animate({
		'opacity':0

		},"fast")

	})



/*grisado de las subcategorias*/
	$('#menu ul ul li a').hover(function(){

	$(this).parent().parent().css({
		background:			'#DDD'
		})
	}, function(){
	$(this).parent().parent().css({
		background:			'none'
	})
	})

/**/
})
