// JavaScript Document
jQuery(document).ready( function() {
	
	jQuery("#menu ul li").hover( 
		function(){
			jQuery("div", this).slideDown("fast");
		},
		function(){
			jQuery("div", this).hide();
		}
	);
	
	//Hollover Buttom Images
	jQuery(".menuSubmit").hover( function() {
		var buttom_id = jQuery(this).attr("id");
		MM_swapImage(buttom_id, '', bloginfo['template_directory'] + '/imagens/menu/' + buttom_id + '_hover.gif', 1);
	},
		function() { MM_swapImgRestore(); }
	);
	

});
