this.imagePreview = function(){	
	/* CONFIG */
		
		xOffset = 100;
		yOffset = 50;
		
	/* END CONFIG */
	$("img.insymaHover").hover(
		function(e){
			$("body").append("<div id='preview'><img src='"+ this.src +"' alt='" + this.alt + "' /></div>");
			$("#preview")
				.css("top",(e.pageY - xOffset) + "px")
				.css("left",(e.pageX + yOffset) + "px")
				.fadeIn("fast");						
		},
		function(){
			$("#preview").remove();
    	}
	);	
	
};


// starting the script on page load
$(document).ready(function(){
	imagePreview();
});
