this.imagePreview = function(){	
		xOffset = 10;
		yOffset = 10;
	$("img.preview").hover(function(e){
		this.t = $(this).attr('desc2');
		var c = (this.t != "") ? "" + this.t : "";
		$("body").append("<p id='preview'>"+ c +"</p>");
		//alert(c);
		$("#preview")
		    .css("position","absolute")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px")
			.fadeIn("fast");						
    },
	function(){
		$("#preview").remove();
    });	
	$("img.preview").mousemove(function(e){
		$("#preview")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px");
	});			
};

$(document).ready(function(){
	imagePreview();
});