jQuery(function() {
// OPACITY OF BUTTON SET TO 70%
jQuery(".about, .about_last, .orchidExperts").css("opacity","0.7");
 
// ON MOUSE OVER
jQuery(".about, .about_last, .orchidExperts").hover(function () {
 
// SET OPACITY TO 100%
jQuery(this).stop().animate({
opacity: 1.0
}, 100);
},
 
// ON MOUSE OUT
function () {
 
// SET OPACITY BACK TO 70%
jQuery(this).stop().animate({
opacity: 0.7
}, 400);
});
});

