$(function() {
// opacity set
$(".menu").css("opacity","0.65");

// on mouse over
$(".menu").hover(function () {

// set opacity to 100
$(this).stop().animate({
opacity: 1.0
}, "fast");
},

// on mouse out
function () {

// set opacity back
$(this).stop().animate({
opacity: 0.65
}, "slow");
});
});

