$(document).ready(function () {
	$(".selprice").change(function (){
		$.getJSON('http://www.orderonlinedrugs.com/json/checkprice.php',{ id: $(this).attr('drid'), q: $(this).val() },function(data){
			$("#"+data.pricetag).html("$ "+data.price);			
			});
	});


	$(".selprice_mp").change(function (){
		$("#qcbid_"+$(this).attr('drid')).val($(this).val());
		$.getJSON('http://www.orderonlinedrugs.com/json/checkprice.php',{ id: $(this).attr('drid'), q: $(this).val() },function(data){
			$("#"+data.pricetag).html("$ "+data.price);
			});
	});
	
	
	$(".addtocartbtn").click(function () {		
		$.get('/json/updatecart.php',{'id':$(this).attr('drid'),'q':$("#sel_drug_"+$(this).attr('drid')).val(),'a':'add'},function (data){
			location.href="/cart/";
		});				
	});
	
	$("#addtocartbtn_mp").click(function () {
		$.post('/json/addtocart_mp.php',$("#mpckb").serialize(),function (data){			
			location.href="/cart/";
		});
		return false;
	});	
	
	
	$(".removebtn").click(function () {		
		$.get('/json/updatecart.php',{'id':$(this).attr('drid'),'a':'rm'},function (data){
			location.href="/cart/";
		});				
	});	
	
	$(".resetbtn").click(function () {		
		$.get('/json/updatecart.php',{'a':'reset'},function (data){
			location.href="/cart/";
		});				
	});		
});

