jQuery(function() {
// OPACITY OF BUTTON SET TO 100%
jQuery(".alignleft").css("opacity",".30");

// ON MOUSE OVER
jQuery(".alignleft").hover(function () {

// SET OPACITY TO 30%
jQuery(this).stop().animate({
opacity: 1.0
}, "normal");
},

// ON MOUSE OUT
function () {

// SET OPACITY BACK TO 100%
jQuery(this).stop().animate({
opacity: .30 //this part might need to be changed
}, "slow");
});
});