/*----------------------------------------------------------

* File Name: global.js

----------------------------------------------------------*/
(function($){
	//Custom cart functions
	(function custom_cart(){
		var a = $("section#cart").height(), //The shopping cart height.
			b = 18; //The height we are forcing the shopping cart to be.
		$("section#cart").css({
			"height": b,
			"overflow": "hidden"
		});
		$("section#cart").hover(function(){
			$(this).animate({
				"height": a
			}, {queue: false});
		}, function(){
			$(this).animate({
				"height": b
			}, {queue: false});
		});
	})();
})(jQuery);
