// Dropdown menu
$(document).ready(function(){
	$('ul.nav-principal li').hover(function(){
		$(this).find('ul:first').fadeIn(200);
		//$(this).find('a:first').css('background-position','0px -31px');
		//$(this).find('div:first').css("z-index","999999999999");
		//alert($(this).find('div:first'));
		//$(this).find('div:first').animate({"opacity": "1"}, 600);
	},
	function(){
		$(this).find('ul:first').fadeOut(200);
		//$(this).find('a:first').css('background-position','0px 0px');
		//$(this).find('div:first').animate({"opacity": "0"}, 250);
	});
});
