/*
 * Image preview script 
 * powered by jQuery (http://www.jquery.com)
 * 
 * written by Alen Grakalic (http://cssglobe.com)
 * 
 * for more info visit http://cssglobe.com/post/1695/easiest-tooltip-and-image-preview-using-jquery
 *
 */
this.imagePreviewf = function(){	
	/* CONFIG */
		
		xOffset = 120;
		yOffset = 20;
		
		// these 2 variable determine popup's distance from the cursor
		// you might want to adjust to get the right result
		
	/* END CONFIG */
	$("a.imagePreview").hover(function(e){
		this.t = this.title;
		this.title = "";	
		var c = (this.t != "")? this.t : "";
		
		var strOut = ""
		strOut += "<div id='imagePreview'>";
		strOut += "<table>";
		strOut += "	<tr>";
		strOut += "		<td valign='top'><img src='"+ this.name +"' alt='Image preview' align='left' /></td>";
		strOut += "		<td>&nbsp;</td>";
		strOut += "		<td valign='top'>" + c + "</td>";
		strOut += "	</tr>";
		strOut += "</table>";
		strOut += "</div>";
		$("body").append(strOut);
		
		$("#imagePreview")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px")
			.fadeIn("fast");						
    },
	function(){
		this.title = this.t;	
		$("#imagePreview").remove();
    });	
	$("a.imagePreview").mousemove(function(e){
		$("#imagePreview")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px");
	});			
};

// starting the script on page load
$(document).ready(function(){
	imagePreviewf();
});