/**
 * @author dvian
 */
$(document).ready(function() {
        Cufon.replace('.titoletto',{ color: '-linear-gradient(#000, #777)'});
        Cufon.replace('#testo');
        $("#menu ul li a").css({'background-image': 'url(images/menusprite.gif)'}).wrapInner("<span></span>");
        $(".mail").each(function() {
            $(this).attr("href","mailto"+":"+$(this).attr("id")+"@valet"+"parking.it");
        });
        $("#menu ul li a").hover(
          function () {
            $(this).parent().animate({backgroundColor: '#FECCCB'}, 400);
          }, 
          function () {
            $(this).parent().animate({backgroundColor: 'transparent'}, 300, function(){
                $(this).css("background-color","transparent");
            });
          });
}); 
