(function($){
	$(function (){
		var $element = $(".topo-menu li");
		
		$element.mouseenter(
			function() {
				$(this).find('ul:eq(0)').show().parents('li').find('a:eq(0)').css({color:"#ffbc08"});
				$(this).find('a:eq(0)').css("backgroundPosition","left 5px");	
		}).mouseleave(
			function() {
				$(this).find('ul:eq(0)').hide().parents('li:eq(0)').find('a').css({color:"#fff"});
				$(this).find('a:eq(0)').css("backgroundPosition","left -24px");
			}
		);
		
		$element.find("ul li").each(function() {})
	});
})(jQuery);