$(document).ready(function(){
	$('#bttnPrev').click(function(){
		window.location.href='gallery-step4.php';
		return false;
	});
	
	$('.checkOut').click(function(){
		window.location.href='gallery-step6.php';
	});
	
	/**************************
	** Remove Item from Cart **
	***************************/
	$('.removeItem').click(function(){
		if(confirm('- Are you sure to remove this item from your cart.'))
		{
			$('#hmode').val('RemoveItemfromCart');
			$('#itemId').val($(this).attr('rel'));
			$('#frmshopcart').submit();
		}
		return false;
	});
	
	/************************************
	** Update Quantity of an Item Cart **
	*************************************/
	$('.qty').change(function(){
		$('#hidQty').val($(this).val());
		$('#itemId').val($(this).attr('title'));
		$('#hmode').val('UpdateQuantity');
		$('#frmshopcart').submit();
	});
	
	/**************************************
	** Update Resolution of an Item Cart **
	***************************************/
	$('.itemResol').change(function(){
		$('#hidResol').val($(this).val());
		$('#itemId').val($(this).attr('title'));
		$('#hmode').val('UpdateResolution');
		$('#frmshopcart').submit();
	});
});
