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

	$(this).find('a.primer-nivel').css({
		background:			'#95C3D7',
		color:		 		'#2E338F',
		'padding-top':		'26px',
		'padding-bottom':	'12px'
		})
	$(this).find('ul').css({display: "block", opacity:'0'})
	$(this).find('ul').stop().animate({
		'opacity':1
		},"fast")

	}, function(){
	$(this).find('a.primer-nivel').css({
		background:			'none'
	});		


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

	})

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

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

/**/
})
