var menuobj = null;
var nosnow = 1;
	
$(function(){


	$(".item1").hover(function(){
								   
								   if(menuobj) {
									   menuobj.next(".section").hide();
									   menuobj = null;
								   }
								   
								   $(this).next(".section").show();
										if ($.browser.msie) {
										}
								   },
								   
								   function(){
									 	menuobj = $(this);
										
								   });
	
	$(".section").hover(function(){ nosnow = 0}, function() { nosnow = 1 } );
	//$(".tour_td").hover(function(){ $(this).css({ cursor='pointer';this.style.backgroundColor='#e0ea97';

});
setInterval("checkHover()", 1000);

function checkHover() {
 if (menuobj && nosnow == 1) {
    menuobj.next(".section").hide();
  } //if
} //checkHover

function checkquick()
{
	var ep = $("#theemail");
	var pw = $("#thepass");
	
	if(ep.val() > '' && pw.val() > '')
	{
		return true;	
	}
	else
	{
		$("#quickaccountinfo").slideDown();
		return false;
		
	}
}