function add_product(pid, ord_type, select_ord){
	if(ord_type == ""){
		$.post(ADD_PRODUCT_URL,{
			pid: pid,
			color_id:$('#hdnColor' + pid).val(), 
			size_id:$('#hdnSize' + pid).val()
		}, function(response){
		$('#cart1').hide();
			$('#cart2').show();
			$('#cart_total').fadeOut();
			$('#tot_items').fadeOut();
			var originalBG = "#3D3C39";
			var fadeColor="#000000";
			$(".top_right_box").animate({backgroundColor:fadeColor}, 1000);
			setTimeout("finishAjax1('" + escape(response) + "', '" + originalBG + "')", 400);
		});
		return false;
	}
	else{
		$.post(ADD_PRODUCT_URL,{
			pid: pid,
			time_dura:$('#time_duration' + select_ord).val(),
			color_id:$('#hdnColor' + pid).val(), 
			size_id:$('#hdnSize' + pid).val()
		}, function(response){
			$('#cart1').hide();
			$('#cart2').show();
			$('#cart_total').fadeOut();
			$('#tot_items').fadeOut();
			var originalBG = "#3D3C39";
			var fadeColor="#000000";
			$(".top_right_box").animate({backgroundColor:fadeColor}, 1000);
			setTimeout("finishAjax1('" + escape(response) + "', '" + originalBG + "')", 400);
		});
		return false;
	}
}
function finishAjax1(response, originalBG){
	var arr=unescape(response).split("|");
	$('#cart_total').html(unescape(arr[1]));
	$('#tot_items').html(arr[0]);
	$('#cart_total').fadeIn();
	$('#tot_items').fadeIn();
	$(".top_right_box").animate({backgroundColor:originalBG},1000);
	url = ADD_PRODUCT_URL.replace('add_product.php', 'cart/');
	window.location.href= url;
}
function duplicate_rec(){
	if(document.getElementById('chkbox').checked == true){
		$('#shipping_fname').val($('#billing_fname').val());
		$('#shipping_lname').val($('#billing_lname').val());
		$('#shipping_address').val($('#billing_address').val());
		$('#shipping_postcode').val($('#billing_postcode').val());
		$('#shipping_city').val($('#billing_city').val());
		$('#shipping_country').val($('#billing_country').val());
		$('#shipping_state').val($('#billing_state').val());
	}
	else{
		$('#shipping_fname').val("");
		$('#shipping_lname').val("");
		$('#shipping_address').val("");
		$('#shipping_postcode').val("");
		$('#shipping_city').val("");
		$('#shipping_country').val("");
		$('#shipping_state').val("");
	}
}