
var h, h2, h3, bill_country, bill_state;
var feats = new Array();
var notify = new Array();

$(function(){
	
	/**
	 * Browse Menu
	 */
	$('#menu_browse').hover(function(){
		clearTimeout(h);
		$('#browse_submenu').show();
		$(this).addClass('hl');
	}, function(){
		h = setTimeout(function(){
			$('#browse_submenu').hide();
			$('#menu_browse').removeClass('hl');
		}, 50);
	});
	
	$('#browse_submenu > ul').hover(function(){
		clearTimeout(h);
	}, function(){
		h = setTimeout(function(){
			$('#browse_submenu').hide();
			$('#menu_browse').removeClass('hl');
		}, 50);
	});
	
	$('#menu_product').hover(function(){
		clearTimeout(h);
		$('#browse_product').show();
		$(this).addClass('hl');
	}, function(){
		h = setTimeout(function(){
			$('#browse_product').hide();
			$('#menu_product').removeClass('hl');
		}, 50);
	});
	
	$('#browse_product > ul').hover(function(){
		clearTimeout(h);
	}, function(){
		h = setTimeout(function(){
			$('#browse_product').hide();
			$('#menu_product').removeClass('hl');
		}, 50);
	});
	
	
});

