$(document).ready(function(){

	$('#add_to_cart').click(function(){
		
		var product_id = $(this).attr("pro_id");
		var min_qty = parseInt(document.getElementById('min_qty').value);
		var stock_qty = parseInt(document.getElementById('stock_qty').value);
		var del_time = document.getElementById('del_time').value;
		var current_time = document.getElementById('current_time').value;
		var discount = document.getElementById('discount').value;
		var product_name = document.getElementById('product_name').value;
		
		//alert(stock_qty);
		//alert(min_qty);
		//return false;
		
		if(stock_qty >= min_qty)
		{
			//alert("added");
			//return false;
			
			if(discount == 0) {
				if(document.getElementById('total_price_upper')) {
					var total_cost = document.getElementById('total_price_upper').value;
					var usd_cost = document.getElementById('usd_cost').value;
					var  str = "&sept=0&total_cost="+total_cost+"&usd_cost="+usd_cost+"&min_qty="+min_qty;
					
				}else{
					var product_price_upper = document.getElementById('product_price_upper').value;
					var shiping = document.getElementById('shiping').value;
					var usd_cost = document.getElementById('usd_cost').value;
					var  str = "&sept=1&product_price_upper="+product_price_upper+"&shiping="+shiping+"&usd_cost="+usd_cost+"&min_qty="+min_qty;
				}
			}
			
			else {
				if(document.getElementById('total_price_upper')) {
					var total_cost = document.getElementById('total_price_upper').value;
					var usd_cost = document.getElementById('usd_cost').value;
					var  str = "&sept=0&total_cost="+total_cost+"&usd_cost="+usd_cost+"&min_qty="+min_qty;
					
				}else{
					var product_price_upper = document.getElementById('product_price_upper').value;
					var shiping = document.getElementById('shiping').value;
					var usd_cost = document.getElementById('usd_cost').value;
					var  str = "&sept=1&product_price_upper="+product_price_upper+"&shiping="+shiping+"&usd_cost="+usd_cost+"&min_qty="+min_qty;
				}
			}
				
			
			$.ajax({
				type: 'POST',   
				url: 'include/cart_function.php',
				data: 'action=addToCart&product_id='+product_id+str,
				dataType: 'html',
				success: function(responseText){
					
					
						window.location="shopping_basket.php";
					
				}
			});
		
		}
		else{
			//alert("not added");
			return false;
		}
		
		});
	
	$('#buy_now').click(function(){
		
		var product_id = $(this).attr("pro_id");
		var min_qty = parseInt(document.getElementById('min_qty').value);
		var stock_qty = parseInt(document.getElementById('stock_qty').value);
		var discount = document.getElementById('discount').value;
		var product_name = document.getElementById('product_name').value;
		
		
		if(stock_qty >= min_qty)
		{
			if(discount == 0) {
				if(document.getElementById('total_price_upper')) {
					var total_cost = document.getElementById('total_price_upper').value;
					var usd_cost = document.getElementById('usd_cost').value;
					var  str = "&sept=0&total_cost="+total_cost+"&usd_cost="+usd_cost+"&min_qty="+min_qty;
					
				}else{
					var product_price_upper = document.getElementById('product_price_upper').value;
					var shiping = document.getElementById('shiping').value;
					var usd_cost = document.getElementById('usd_cost').value;
					var  str = "&sept=1&product_price_upper="+product_price_upper+"&shiping="+shiping+"&usd_cost="+usd_cost+"&min_qty="+min_qty;
					
				}
			}
			
			else {
				if(document.getElementById('total_price_upper')) {
					var total_cost = document.getElementById('total_price_upper').value;
					var usd_cost = document.getElementById('usd_cost').value;
					var  str = "&sept=0&total_cost="+total_cost+"&usd_cost="+usd_cost+"&min_qty="+min_qty;
					
				}else{
					var product_price_upper = document.getElementById('product_price_upper').value;
					var shiping = document.getElementById('shiping').value;
					var usd_cost = document.getElementById('usd_cost').value;
					var  str = "&sept=1&product_price_upper="+product_price_upper+"&shiping="+shiping+"&usd_cost="+usd_cost+"&min_qty="+min_qty;
					
					
				}
			}
			
			$.ajax({
				type: 'POST',   
				url: 'include/cart_function.php',
				data: 'action=addToCart&product_id='+product_id+str,
				dataType: 'html',
				success: function(responseText){
					//if(stock_qty >= min_qty){
						window.location="shopping_basket.php";
					//}
				}
			});
		}
		else{
			
			return false;
		}
		
		
	});
	
	
	$('#add_list').click(function(){
											 
		var product_id = $(this).attr("pro_id");
		var user_id = document.getElementById('user_id').value;
		
		if(user_id == ''){
			window.location = "login.php";
			document.getElementById('msg_box_list').innerHTML;
			return false;
		}
		
		
		$.ajax({
			type: 'POST',   
			url: 'include/cart_function.php',
			data: 'action=addToList&product_id='+product_id+'&user_id='+user_id,
			dataType: 'html',
			success: function(responseText){
				//alert(responseText);
				//document.getElementById('msg_box_list').style.display = "block";
				document.getElementById('msg_box_list').innerHTML = responseText;
			}
		});
	});
	
	
	
});


