	function jump_menu(id)
	{
			var dropdownIndex = document.getElementById(id).selectedIndex;
			var dropdownValue = document.getElementById(id)[dropdownIndex].value;

			window.location.href=dropdownValue;

	}

		function clearValue(id)
	{
		document.getElementById(id).value='';	
	}


	function display_cart()
	{
		$("#order_display").hide();
		$("#cart_display").fadeIn('slow');
	}
	
	function close_cart()
	{
		$("#cart_display").fadeOut('slow');
	}

	function order()
	{
		$("#cart_display").fadeOut('slow');
		$("#order_display").fadeIn('slow');
	}
	