// Navigation
$(function() {
	$('#nav').droppy();
});

//Simple slider

function showmsgbox(msg) {	
	$("#contentmsg_content").html(msg);
	$('#hiddenclicker').trigger('click');
}

function putitemincart(itemid){
	$.getJSON("http://www.jzmic.com/cart.php?action=additemtocart&itemid="+itemid, function(data){		
		showcart();			
		showmsgbox('Item was added to cart');
});	
}

function incitemcart(itemid){
	$.getJSON("http://www.jzmic.com/cart.php?action=additemtocart&itemid="+itemid, function(data){
		showcart();				
		$('#subtotal_'+itemid).html(data.qty*data.price);
		$('#qty_'+itemid).html(data.qty);				
		$('#carttotal').html(data.cart_total);
	});	
}

function putitemincartcheckout(itemid){
	$.getJSON("http://www.jzmic.com/cart.php?action=additemtocart&itemid="+itemid, function(data){
		//showcart();			
		//showmsgbox('Item was added to cart');
		window.location.href='http://www.jzmic.com/en/cart';
	});	
}

function decitemcart(itemid){
	$.getJSON("http://www.jzmic.com/cart.php?action=removeitemfromcart&itemid="+itemid, function(data){
		showcart();		
		if (typeof(data.qty)!='undefined'){
			$('#subtotal_'+itemid).html(data.qty*data.price);
			$('#qty_'+itemid).html(data.qty);
		} else if (data.msg=='item_removed_from_cart') {
			if (data.cart_total==0){
				//window.location.href='http://www.zjmic.com';
				$('#cartinfo').remove();
				$('#emptycart').show();
			} else {
				$('#row_'+itemid).remove();	
				$('#carttotal').html(data.cart_total);
			}
		}		
	});	
}


function removeitemfromcart(itemid){
	$.getJSON("http://www.jzmic.com/cart.php?action=removeitemfromcart&itemid="+itemid, function(data){
		showcart();
		if (data.cart_total==0){
			$('#cartinfo').remove();
			$('#emptycart').show();
		} else {
			$('#row_'+itemid).remove();	
			$('#carttotal').html(data.cart_total);
		//showmsgbox('Item was removed from cart');
		}
	});	
}

function clearcart(){
	$.get("http://www.jzmic.com/cart.php?action=clearcart", function(){
		showcart();
		showmsgbox('Cart was cleared');
	});	
}

function showcart(){
	$.getJSON("http://www.jzmic.com/cart.php?action=listcart", 
	function(data){		
		if (data.status=='ok'){
			$('#cart_content').html('Items: '+data.totalitems+'<br>'+'Total:'+data.totalprice+' $');
			$('#cart').show();	 
			$('#cart_clear').show();
			$('#cart_checkout').show();
		} else if (data.msg=='cart_empty') {
			$('#cart').hide();
			$('#cart_content').html('');
			$('#cart_clear').hide();
			$('#cart_checkout').hide();
		}
	});	
}

$(document).ready(function(){	
	showcart();	 
});
	

