$(document).ready(function(){
		// hides the project list as soon as the DOM is ready
		// (a little sooner than page load)
		$('#cart_container').hide();
		$('a.hide_cart').hide();
				
		// toggles the  project list on clicking the noted link 
		$('a.show_cart').click(function() {
			$('#cart_container').toggle(100);
			$('a.hide_cart').toggle(100);
			$('a.show_cart').toggle(100);
		// return false;
		})
		
		$('a.hide_cart').click(function() {
			$('#cart_container').toggle(100);
			$('a.hide_cart').toggle(100);
			$('a.show_cart').toggle(100);
		// return false;
		})
		
		$('a.hide_cart_body').click(function() {
			$('#cart_container').toggle(100);
			$('a.hide_cart').toggle(100);
			$('a.show_cart').toggle(100);
		// return false;
		})

});

