var ajaxCart={overrideButtonsInThePage:function(){$('.ajax_add_to_cart_button').unbind('click').click(function(){ajaxCart.product_id=$(this).parent().parent().parent().find("[name='id_product']").val();ajaxCart.product_id_attribute=$(this).parent().parent().find("[name='id_product_attribute']").val();ajaxCart.product_quantity=1;ajaxCart.product_title=$("#ajax_cart_product_title_"+ajaxCart.product_id).text();ajaxCart.product_brand=$("#ajax_cart_product_brand_"+ajaxCart.product_id).text();ajaxCart.product_image=$("#ajax_cart_product_image_"+ajaxCart.product_id).attr("src").replace("home.jpg","medium.jpg");ajaxCart.add();return false;});$('.ajax_add_to_cart_product_button').unbind('click').click(function(){ajaxCart.product_id=$(this).parent().children("[name='id_product']").val();ajaxCart.product_id_attribute=$(this).parent().children("[name='id_product_attribute']").val();ajaxCart.product_quantity=$(this).parent().parent().find("[name='qty']").val();ajaxCart.product_title=$("#ajax_cart_product_title_"+ajaxCart.product_id).text();ajaxCart.product_brand=$("#ajax_cart_product_brand_"+ajaxCart.product_id).text();ajaxCart.product_image=$("#bigpic").attr("src").replace("large.jpg","medium.jpg");ajaxCart.add();return false;});},add:function(){$.ajax({type:'GET',url:baseDir+'cart.php',async:true,cache:false,dataType:"json",data:'add&ajax=true&qty='+((ajaxCart.product_quantity&&ajaxCart.product_quantity!=null)?ajaxCart.product_quantity:'1')+'&id_product='+ajaxCart.product_id+((ajaxCart.product_id_attribute&&ajaxCart.product_id_attribute!=null&&typeof ajaxCart.product_id_attribute!="undefined")?'&ipa='+ajaxCart.product_id_attribute:''),success:function(jsonData){var tb_close_txt=window.parent.ThickboxI18nClose;window.parent.ThickboxI18nClose="";var tb_esc_txt=window.parent.ThickboxI18nOrEscKey;window.parent.ThickboxI18nOrEscKey="";if(jsonData.hasError)$("body",window.parent.document).append('<div id="product_in_cart" style="display:none;"><p><table cellpadding="0" cellspacing="0" border="0" style="width:100%;height:175px;"><tr><td colspan="2" style="padding:0px 20px">Erreur : '+jsonData.errors+'</td></tr><tr><td ><img src="'+themeImageDir+'back_catalog.gif" onclick="javascript:tb_remove();" class="pointer" /></td><td align="right"  style="height:20px;"></a></td></tr></table></p></div>');else $("body",window.parent.document).append('<div id="product_in_cart" style="display:none;"><p><table cellpadding="0" cellspacing="0" border="0" style="width:100%;height:175px;"><tr><td colspan="2" style="padding:0px 20px"><img style="height:65px;width:65px;margin-right:15px;" src="'+ajaxCart.product_image+'" align="left"/>'+ajaxCart.product_title+'<br /><span class="order-validation-m">'+ajaxCart.product_brand+'</span></td></tr><tr><td ><img src="'+themeImageDir+'back_catalog.gif" onclick="javascript:tb_remove();" class="pointer" /></td><td align="right"  style="height:20px;"><a href="order.php"><img src="'+themeImageDir+'val-cmd.gif" name="order" /></a></td></tr></table></p></div>');self.parent.tb_show("AJOUT D'UN PRODUIT Ë VOTRE PANIER","#TB_inline?height=200&width=400&inlineId=product_in_cart&modal=false",false);$("#product_in_cart",window.parent.document).remove();window.parent.ThickboxI18nClose=tb_close_txt;window.parent.ThickboxI18nOrEscKey=tb_esc_txt;$('.ajax_cart_quantity',window.parent.document).text(jsonData.nbTotalProducts);$('.ajax_cart_empty',window.parent.document).hide();$('.ajax_cart_filled',window.parent.document).show();if(jsonData.nbTotalProducts>1){$('.ajax_cart_product_txt',window.parent.document).hide();$('.ajax_cart_product_txt_s',window.parent.document).show();}else

