$(document).ready(function(){
	$("ul#dropdown li ul.dropped").hide();

	$("ul#dropdown li.over").hover(
		function(){
			$(this).children("ul").slideDown(300).show();
			$(this).children("a.bgM").addClass("paginaActual");
			return false;
		}, 
		function(){
			$(this).children("ul").hide();
			$(this).children("a.bgM").removeClass("paginaActual");
			return false;
		}
	);
});

		

	
