var ajaxProcessing = false;

$(function(e) {
	setAjax();
	$cart = $('#cart');
	$('a.addtocart').click(function(e) {
		showLoading();
		$cart.show();
		cart_visible = true;
		$('#cart_button').addClass('open');
		if(!ajaxProcessing) {
			var $this = $(this);
			var product_id = $this.attr('rel');
			ajaxProcessing = true;
			$('#cart').load(root+'products/ajax_addtocart/'+product_id, {}, function(rt, ts, xhr) {
				ajaxProcessing = false;
				setAjax();
			});
		}
	});

	$('a.viewlarger').colorbox({rel: $(this).attr('rel'), transition:"none"});

	$('a.close').click(function(e) {
		$('div.popup2').hide();
	});
	
	$('a.open').click(function(e) {
		var thisitem = $(this);
		var rel = thisitem.attr('rel');
		var pos = thisitem.offset();
		var contentPos = $('#contenu').offset();
		var popup = $('#'+rel);
		popup.css({ "left": contentPos.left + 240 + "px", "top": pos.top - contentPos.top + "px" }).show();
	});
	
	$('div.anglesproduit').click(function(e) {
		var thisitem = $(this);
		thisitem.parent().parent().parent().find('div.encadreproduit').find('img').attr('src', thisitem.attr('large'));
		thisitem.parent().parent().parent().find('div.encadreproduit').find('a.visible').hide().siblings('a[picid="'+thisitem.attr('picid')+'"]').show();
		$('a.viewlarger').show();
		thisitem.parent().parent().parent().find('div.encadreproduit').find('div.positionpiece').hide();
	});
	
	$('div.tagsproduit').click(function(e) {
		var thisitem = $(this);
		thisitem.parent().parent().parent().find('div.encadreproduit').find('img').attr('src', thisitem.attr('large'));
		//viewlarger
		$('a.viewlarger').hide();
		//alert(thisitem.parent().parent().find('div.encadreproduit').find('div.positionpiece_container').height());
		thisitem.parent().parent().parent().find('div.encadreproduit').find('div.positionpiece').show();
		newpos = thisitem.attr('posy') - 46;
		thisitem.parent().parent().parent().find('div.encadreproduit').find('div.positionpiece').css(  { position: "absolute",top: newpos +'px', left: thisitem.attr('posx') +'px'});
		//alert(thisitem.parent().parent().find('div.encadreproduit').find('div.positionpiece_container').height());
		//thisitem.parent().parent().find('div.encadreproduit').find('a.visible').hide().siblings('a[picid="'+thisitem.attr('picid')+'"]').show();
	});
});

function showLoading() {
	$('#cart_content').html('<img src="'+root+'img/ajax-loader.gif" alt="" style=\"margin-left: 94px; margin-top: 20px;\" />');
}

function setAjax() {
	$('a.removefromcart').click(function(e) {
		showLoading();
		if(!ajaxProcessing) {
			var $this = $(this);
			var product_id = $this.attr('rel');
			ajaxProcessing = true;
			$('#cart').load(root+'products/ajax_removefromcart/'+product_id, {}, function(rt, ts, xhr) {
				ajaxProcessing = false;
				setAjax();
			});
		}
	});
	
	$('a.emptycart').click(function(e) {
		showLoading();
		if(!ajaxProcessing) {
			ajaxProcessing = true;
			$('#cart').load(root+'products/ajax_emptycart/', {}, function(rt, ts, xhr) {
				ajaxProcessing = false;
				setAjax();
			});
		}
	});
}
