$(document).ready(function(){


	$(".expThis").hover(function() {
		$(this).mousemove(function(e){
			var $x = e.pageX + 20;
			var $y = e.pageY - 20;
			var $exp = $(this).attr("alt");
			if ($exp != "") {
		$("#header_exp").css("display", "block").css("left", $x).css("top", $y).html("<span style='color:#ac5f39;'>About this Image:</span><br />" + $exp);
			}
    });
			}, function() {
		$("#header_exp").css("display", "none");
	});
	
	
});
