$(document).ready(function(){
		$(".reqa_img").fadeTo("slow", 1.0); // When page loads, set the opacity of images to 100%
		$(".reqa_img").hover(function(){
			$(this).fadeTo("slow", 0.4); // On mouse hover, set the opacity of images to 40%
			$("#statusText").text($(this).attr('alt')); // Capture the 'alt' attribute values of images
			$("#messagebox").stop().animate({opacity: "show", top: "0"}, "slow"); // show message box with slow opacity
		},function(){
			$(this).fadeTo("slow", 1.0); // On Mouseout set the opacity to 100%
			$("#messagebox").stop().animate({opacity: "hide", top: "-300"}, "slow"); // hide message box with slow opacity
		});
});


