$(function() {
// OPACITY OF BUTTON SET TO 50%
		
// ON MOUSE OVER
$(".latest_img").hover(function () {
$(".latest_img").css("opacity","0.5");								  
// SET OPACITY TO 100%
$(this).stop().animate({
opacity: 1.0
}, "fast");
},
		
// ON MOUSE OUT
function () {
$(".latest_img").css("opacity","0.5");				

});
});



$(function() {
// OPACITY OF BUTTON SET TO 50%

		
// ON MOUSE OVER
$("#homeimages").hover(function () {
										  
},
// ON MOUSE OUT
function () {
$(".latest_img").css("opacity","1.0");	

});
});
