/* Image preview script */ this.imagePreview = function(){ /* CONFIG */ xOffset = 10; yOffset = 30; // these 2 variable determine popup's distance from the cursor // you might want to adjust to get the right result /* END CONFIG */ banner("a.preview").hover(function(e){ this.t = this.title; this.title = ""; var c = (this.t != "") ? "
" + this.t : ""; banner("body").append("

Image preview"+ c +"

");//alert('TTTDD'); banner("#preview") .css("top",(e.pageY - xOffset) + "px") .css("left",(e.pageX + yOffset) + "px") .fadeIn("fast"); //alert('title'); }, function(){ this.title = this.t; banner("#preview").remove(); }); banner("a.preview").mousemove(function(e){ banner("#preview") .css("top",(e.pageY - xOffset) + "px") .css("left",(e.pageX + yOffset) + "px"); }); }; var banner = jQuery.noConflict();