
if(window.undefined==firstload){
    var firstload=true;
}

$(document).ready(function(){
    if($("body").attr('id')!='product' && firstload){
        $(".product_img_link, .product_image").each(function(){
            if(window.undefined==$(this).attr("href")){
                return;
            }
            var l;
            if($(this).attr("href").toString().indexOf('?')>0){
                l=$(this).attr("href")+"&content_only=1";
            }else{
                l=$(this).attr("href")+"?content_only=1";
            }

            $(this).css('position', 'relative');
            $(this).append('<a class="framebox" href='+l+'></a>');
            $(this).hover(function(){
                $(this).children(".framebox").show();
            }, function(){
                $(this).children(".framebox").hide();
            });
            
            $(this).children(".framebox").fancybox({width:640, height:700, centerOnScroll:true, autoDimensions:false, titleShow:false, onComplete:function(){
					
                    $("#short_description_block .buttons_bottom_block").remove();
                    $("#usefull_link_block").remove();
                    firstload=false;
                    if(window.undefined!=ajaxCart){
                        $('p#add_to_cart input').unbind('click').click(function(){
                                ajaxCart.add( $('#product_page_product_id').val(), $('#idCombination').val(), true, null, $('#quantity_wanted').val(), null);
                                return false;
                        });
                    }
            }});
        });
    }
    firstload=false;
});

