$(document).ready(function() {
						   
						   /*$("#main_services").parent("li").hover(function() {
		$("#main_services").next("ul").slideDown();
	}, function() {
		t = setTimeout(function() { $("#main_services").next("ul").slideUp(); }, 500);
	});*/
	
	$(function(){
		$("ul#navlist li").hover(function(){
			$(this).addClass("hover");
			$('ul:first',this).stop(true, true).slideToggle();
			$('ul:first',this).css('z-index', '200');
		}, function(){
			$(this).removeClass("hover");
			$('ul:first',this).stop(true, true).slideToggle();
			$('ul:first',this).css('z-index', '');
		});
	});
	

	// New checkout functionality.
	
	if($("form[name=checkout] table.cart").length > 0) {
		
		$("table.cart .cart_remove, table.cart .cart_vat .cart_quantity, table.cart .cart_total .cart_quantity").hide();
		
		$("table.cart td.cart_quantity input:not(':hidden')").after('<input type="submit" class="update" name="update_cart" value="Update" />');
		
	}

});
