function switch_main(id)
{
	show_leftmenu();
	hide_all();
	Element.show(id);
}
function hide_all()
{
	Element.hide('start');
	Element.hide('dojo');
	Element.hide('isshinryu');
	Element.hide('schedule');
	Element.hide('history');
	Element.hide('instructors');
/*	Element.hide('blog');*/
	Element.hide('contact');
}
function show_leftmenu()
{
	Element.show('startcontrol');
	Element.show('dojocontrol');
	Element.show('isshinryucontrol');
	Element.show('schedulecontrol');
	Element.show('historycontrol');
	Element.show('instructorscontrol');
	/*Element.show('blogcontrol');*/
	Element.show('contactcontrol');
}
function hide_leftmenu()
{
	Element.hide('startcontrol');
	Element.hide('dojocontrol');
	Element.hide('isshinryucontrol');
	Element.hide('schedulecontrol');
	Element.hide('historycontrol');
	Element.hide('instructorscontrol');
	/*Element.hide('blogcontrol');*/
	Element.hide('contactcontrol');
	hide_all();
	Element.show('start');
}
