function setUpMenu()
{
	// get every menu link
	
	// attach an onclick handler
	$(".menu a").click(function(){
		var t = $(this).attr("href").substring(1);
		$("#"+t).toggle();
	});
}

/* on ready - call all required scripts */
$(document).ready(function() {

	setUpMenu();

	$( "#tabs" ).tabs();
	$( ".tabs-bottom .ui-tabs-nav, .tabs-bottom .ui-tabs-nav > *" ).removeClass( "ui-corner-all ui-corner-top" ).addClass( "ui-corner-bottom" );

});
