$(document).ready(function(){
	
	$('.vocemenu').bind('mouseover',function(){$(this).css("background-color","#943308");})
				  .bind('mouseout',function(){
												if($(this).hasClass('premuto')){ $(this).css("background-color","#006699");}
												else{						 	 $(this).css("background-color","#E94E0C");}
												
											});
	
	$('.pulsante').bind('mouseover',function(){	$(this).css("background-color","#E94E0C").children().css("color","white");})
				  .bind('mouseout',function(){	$(this).css("background-color","white").children().css("color","#C7683E");});
	
});
