
this.imagePreview=function(){xOffset=0;yOffset=30;dynamicHeight1=$("#JQPreview1").attr('height')/2;$("div.prod_cat_left_img a").hover(function(e){if(this.id!=""){$("body").append("<p id='imgPreviewWithStyles'><img src='"+this.id+"' width='300' alt='Loading Image...' id='JQPreview1' /></p>");$("#JQPreview1").load(function(){dynamicHeight1=$("#JQPreview1").attr('height')/2;});$("#imgPreviewWithStyles").css("top",(e.pageY-dynamicHeight1)+"px").css("left",(e.pageY+yOffset)+"px").fadeIn("fast");}},function(){this.title=this.t;$("#imgPreviewWithStyles").remove();});$("div.prod_cat_left_img a").mousemove(function(e){$("#imgPreviewWithStyles").css("top",(e.pageY-dynamicHeight1)+"px").css("left",(e.pageX+yOffset)+"px");});};$(document).ready(function(){imagePreview();});
