$(document).ready(function(){
$(".boton").fadeTo("fast", 1.5);
$(".boton").hover(function(){
$(this).fadeTo("fast", 0.5);
},function(){
$(this).fadeTo("slow", 1);
});
});
