// JavaScript Document

$(document).ready(function() {
	$().menu.init();
});

$.fn.menu = {
	init: function() {
		var hash = window.location.hash;
		
		if(!hash) { 
			$('#menu_items').children().addClass('hide');
			$('#menu_default').removeClass('hide');
		} else {
			jQuery().menu.hideShow(window.location.hash);
		}
		
		$('a.menu_toggle').click(function() {
			var href = $(this).attr('href');
			$().menu.hideShow(href);
			return false; // prevents the window from scrolling to the anchor
		});
		
	},
	hideShow: function(el) {
		$(el).toggleClass('hide').siblings().addClass('hide');
		if($(el).hasClass('hide')) {
			$('#menu_default').removeClass('hide');
		}
	}
}