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


jQuery(function() {
// OPACITY OF BUTTON SET TO 50%
jQuery("#text p").css("opacity","1.0");
		
// ON MOUSE OVER
jQuery("#text p").hover(function () {
										  
// SET OPACITY TO 1000%
jQuery(this).stop().animate({
opacity: 0.5
}, "fast");
},
		
// ON MOUSE OUT
function () {
			
// SET OPACITY BACK TO 50%
jQuery(this).stop().animate({
opacity: 1.0
}, "fast");
});
});


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