$(document).ready(function(){
$("ul.subnav").parent().append("<span></span>");
$("ul.topnav li a").hover(function() {
	$(this).parent().find("ul.subnav").slideDown('fast').show();
	
	$(this).parent().hover(function() {
	}, function(){
		$(this).parent().find("ul.subnav").slideUp('fast')
	});
	}).hover(function() {
		$(this).addClass("subhover");
	}, function(){
		$(this).removeClass("subhover");
	});
});

function ativa_item(item){
	//alert('tmenino');
	document.getElementById(item).style.backgroundPosition='bottom';
}
function desativa_item(item){
	//alert('222');
	document.getElementById(item).style.backgroundPosition='top';
}
