$(document).ready(function(){
	// hide menu, show/hide on click, hide menuDelay ms after mouseout
	var menuDelay = 750;

	$('#default_back').click(function(){
		document.location = '/';
		return true;
	});

	$('#menu_list').hide();

	$('#menu h2 a').click(function(){
		$('#menu ul').toggle();
                //$this.hide();
		return false;
	});
	
	$(".close").click(
        function(){ 
        	$(this).parent('div').hide();
        	return false;
        }
    );	

});
