$(document).ready(function () {


	$("div#footer").mouseenter(function(){
	
		$("a.displayNone").fadeIn();
		$("h6#thx").fadeIn();
	
	});
	
	
	$("div#footer").mouseleave(function(){
	
		$("a.displayNone").hide();
		$("h6#thx").hide();
	
	});


	$("img.excerpt").click(function(){
	
		$("img.displayNone").show();
	
	});

});

