$(window).bind("load", function() {
        
    /*
        Show Thumbnails of products for accordion
    */        
    $('.accordion dl.csc-textpic-image img:not(.lupe)').each(function() {
            if (this.src.length > 0) {
                // image orientation
                var height = $(this).attr('height');
                var width = $(this).attr('width');
                var orientation = (height > width) ? 'portrait' : 'landscape';  
                // add the image as overlay
                $(this).parents('div.accordion').eq(0).find('.csc-header h3')
                    .parent().append('<div class="preview-thumb ' + orientation +  '"><img src="' + this.src + '"  border="0" alt=""></div>');
            }
        });

});
$(window).bind("load", function() {
        
    /*
        Show Thumbnails of products for accordion
    */        
    $('.accordion dl.csc-textpic-image img:not(.lupe)').each(function() {
            if (this.src.length > 0) {
                // image orientation
                var height = $(this).attr('height');
                var width = $(this).attr('width');
                var orientation = (height > width) ? 'portrait' : 'landscape';  
                // add the image as overlay
                $(this).parents('div.accordion').eq(0).find('.csc-header h3')
                    .parent().append('<div class="preview-thumb ' + orientation +  '"><img src="' + this.src + '"  border="0" alt=""></div>');
            }
        });

});
