/**** Add application wide javascripts below this point  ******/
$(document).ready(function(){  
	$('#navigation').clickMenu();
	
	$('#product_qty_container').hide();
	$('#button-add-to-cart').hide();
	
	/* show/hide cart */
	$("#your-cart-tag").click(function () {
		$("#cart").slideToggle("slow");
	});
	
	$("#site-container").click(function () {
		$("#cart").fadeOut("slow");
	});
	
	$("#close-cart").click(function () {
		$("#cart").fadeOut("slow");
	});
	
	/* add product and show cart */
	$('#product-add-to-cart').ajaxForm(function() {
		window.scrollTo(0,0);
		$("#cart").load("/cart/list-basket");
		$("#basket-size").load("/cart/basket_size");
		$("#cart").show("slow");
		$("#cart").animate({opacity: 1.0}, 8000);
		$("#cart").fadeOut("slow");
  }); 

 	/*toggle through the galley */
	$(".gallery-item").click(function() {
		_gallery_item = $(this);
		$('#gallery-detail').fadeOut('fast',function(){
			/*$('.loading').show();*/
			/*$('#magnify').attr('href',_gallery_item.attr("alt"));*/
			$('#gallery-img').hide();
			$('#gallery-img').load(function(){
				$(this).hide();
				$(this).fadeIn();
			}).attr('src',_gallery_item.attr("longdesc"));
			$('#gallery-img-desc').html($('div#' + _gallery_item.attr('title')).html());
			/*$('#gallery-detail').animate({opacity: 1.0}, 2000);*/
			$('#gallery-detail').fadeIn('slow',function(){
				/*$('.loading').hide();*/
			});
		});
  });


	/* check stock and display qty avail */
	var product_color = null;
	var product_size = null;
	
	$('.product-size').click(function(){
		product_size = $(this).val();
	});
	
	$('.product-color').click(function(){
		product_color = $(this).val();
	});
	
	$('.stock-check').click(function(){
		if(product_color != null && product_size != null){
			product_id = $('#product_id').val();
			$('#product_qty_container').load('/shop/check-stock/'+product_id+'/'+product_color+'/'+product_size);
			$('#availiblity p').hide();
			$('#product_qty_container').fadeIn();
		}
	});
});
