//
function slideCart(product_id,qty ){
	getAjaxdiv('shopping_cart_slide_ajax.php?products_id=' + product_id + '&qty='+qty ,'slideCart');
}
function initSlideCart(){
	document.getElementById('slideCart').style.right = "-300px";
}
function slideCartMove(id, move){
	pos_x_max = 10; //position de butee à gauche
	pos_x_min = -300; //position de butee à droite
	pos_x = document.getElementById(id).style.right;
	pos_x = pos_x.substr(0,pos_x.length-2);
	
	if(pos_x < pos_x_min){
		move ="stop";
	}
	
	if((pos_x<pos_x_max) && (move == 'left')){
		pos_x = parseInt(pos_x) + 10;
		pos_x = pos_x + "px";
		document.getElementById(id).style.right= pos_x;
		setTimeout("slideCartMove('"+ id + "','" + move + "')",10);
	}
	if((pos_x>=pos_x_max) && (move == 'left')){
		move ="right";
		pos_x = pos_x + "px";
		document.getElementById(id).style.right= pos_x;
		setTimeout("slideCartMove('"+ id + "','" + move + "')",2000);
	}

	if((pos_x<=pos_x_max) && (move == 'right')){
		move ="right";
		pos_x = parseInt(pos_x) - 10;
		pos_x = pos_x + "px";
		document.getElementById(id).style.right= pos_x;
		setTimeout("slideCartMove('"+ id + "','" + move + "')",10);
	}
}