var busy = 0;

function showMenu(showBool){
	if (busy){
		return;	
	}

	if (showBool){
		busy = 1;
		$('#home-maintext').hide(50);
		$('#menu').show(300);
		$('#home-alttext').show(250, function() {
   			busy = 0;
		});

		
	} else {
		busy = 1;
		$('#home-alttext').hide(50);		
		$('#menu').hide(300);
		$('#home-maintext').show(250, function() {
		   busy = 0;
		});

	}
}

//attach scripts

$(document).ready(function() {

	showMenu(0);
/*
$('#menu-wrapper').live('mouseover mouseout', function(event) {
  if (event.type == 'mouseover') {
    showMenu(1);
  } else {
     showMenu(0);
  }
});
*/

	$('#menu-wrapper').bind({
	 mouseenter : function() {
		 showMenu(1);
	},
	  mouseleave : function() {
		 showMenu(0);
	}
	});



});



