$(window).load(function() {
	$('a.lightbox').lightBox({
        imageLoading:			'templates/genericshop/images/lightbox-ico-loading.gif',		// (string) Path and the name of the loading icon
        imageBtnPrev:			'templates/genericshop/images/lightbox-btn-prev.gif',			// (string) Path and the name of the prev button image
        imageBtnNext:			'templates/genericshop/images/lightbox-btn-next.gif',			// (string) Path and the name of the next button image
        imageBtnClose:			'templates/genericshop/images/lightbox-btn-close.gif',		// (string) Path and the name of the close btn
        imageBlank:				'templates/genericshop/images/lightbox-blank.gif'
    });
    $('img.shop.front.image, img.shop.cat.image').each(function() {
        if (this.height > 0) {
            mTop = Math.round((120 - $(this).height())/2);
            $(this).css("marginTop", mTop + "px");
        }
    });
});
