// JavaScript Document
             
jQuery.noConflict();
window.onload = jQuery(function(){
   
   jQuery('.categoryL a,.category_cm a').imgPreview({
        containerID: 'imgPreviewWithStyles',
        srcAttr: 'rel',
        imgCSS: {
            // Limit preview size:
            height: 100
        },
            onShow: function(link){
            jQuery('<span>' + link.href + '</span>').appendTo(this);
        },
            // When container hides: 
            onHide: function(link){
            jQuery('span', this).remove();
        }

   });
 
});
 

