/* store.js */

$(function() {
	
	// Hide categories
	$('.store_cont').hide();
	
	// Add click events
	$('a.catlink').click(function() {
		$('.store_cont').fadeOut('fast');
		$('#'+'store_'+this.id).fadeIn('slow');
		return false;
	});
	
		
	$("form.cart_form").submit(function() {
	var title = "Your Shopping Cart";
	var orderCode = $("input[name=order_code]", this).val();
	var quantity = $("input[name=quantity]", this).val();

	$.ajax({
		type: "POST",
		url: "includes/store/cart_add.php",
		data: "order_code=" + orderCode + "&quantity=" + quantity,
		
		success: function() {
			// Item Added to Cart
			window.location = "store-cart";
		}
	});
						
	return false;
	});
	
	
	
	
});
