
$(document).ready(function(){
	
		$(".mainimage").fadeIn("slow");
		$(".enter").hover(function(){
			$(".enter").addClass("showText").fadeIn("slow");
		});
		$(".leave").hover(function(){
			$(".leave").addClass("showText").fadeIn("slow");
		});
		$(".mainimage").click(function(){
			$(".mainimage").fadeIn("slow");
		});
	
});
