$(document).ready( function() {
	$("#cart_box").click( function() {
		if($(this).css("left")=='610px')
			$(this).animate({"left": "+=120px"}, "slow");
		if($(this).css("left")=='730px')
			$(this).animate({"left": "-=120px"}, "slow");
	});
});


function goOrd() { 
window.location = "cart.php?pid=order";
}