 
$(function() { 
// OPACITY OF IMAGE SET TO Low % 
$(".latestimg").css("opacity","0.3"); 
// ON MOUSE OVER 
$(".latestimg").hover(function () { 
// SET OPACITY TO 100% 
$(this).stop().animate({ 
opacity: 1.0 
}, 500); 
}, 
// ON MOUSE OUT 
function () { 
// SET OPACITY BACK TO Low % 
$(this).stop().animate({ 
opacity: 0.3 
}, 2000); 
}); 
});

$(function() { 
// OPACITY OF BUTTON SET TO 100% 
$(".latestimg2").css("opacity","1.0"); 
// ON MOUSE OVER 
$(".latestimg2").hover(function () { 
// SET OPACITY TO 70% 
$(this).stop().animate({ 
opacity: 0.7 
}, 300); 
}, 
// ON MOUSE OUT 
function () { 
// SET OPACITY BACK TO 100% 
$(this).stop().animate({ 
opacity: 1.0 
}, 1500); 
}); 
});
