function AlteraImagemMenu(a, b){
	document.getElementById(a).src="img/menu/"+b+".gif";	
}
$(document).ready(function(){
$('dd:not(:first)').hide();
$('dt a').click(function(){
$("dd:visible").slideUp("slow");
$(this).parent().next().slideDown("slow");
return false;
});
});