$(document).ready(function() {
	$("#wrapper").hide();
	$("#wrapper").fadeIn(8000);
	
//IMAGE HOVER EFFECT//	
	$("img.a").hover(function() {
		$(this).stop().animate({"opacity": "0"}, "slow");},function() {
			$(this).stop().animate({"opacity": "1"}, "slow");
			
		});
});

