function changeBg(elemento, tipo){
	if(tipo == "over"){
		$(elemento).css({'border-bottom-color' : '#000', 'border-bottom-widht' : '3px'});
	} else {
		$(elemento).css({'border-bottom-color' : '#FFF', 'border-bottom-widht' : '3px'});
	}
}

$(function() {   	   
    $(".linkMenu").mouseenter(function(){							  
		changeBg($(this), "over");
    }).mouseleave(function(){	
		changeBg($(this), "out");
	})
});	

