jQuery(document).ready(function() {
	jQuery('div.tutor').hide();
	jQuery('div.philosophy').hide();
	var tutor = document.location.hash.substring(1);
	if(tutor && tutor != 'FSContact1' && tutor != 'FSContact2' ) { // Kludge to prevent Contact Form from being hidden on submit
		jQuery('.splash').hide();
		jQuery('div.tutor').not('div.' + tutor ).hide();
		jQuery('div.' + tutor).show();
	};

	jQuery('a.tutor').click(function() {
		var click_tutor = jQuery(this).attr('id');
		jQuery('.splash').hide();
		jQuery('div.philosophy').hide();
		jQuery('div.tutor').not('div.' + click_tutor ).hide();
		jQuery('div.' + click_tutor ).fadeIn(400);
	});

	jQuery('a.philosophy').click(function() {
		jQuery('div.philosophy').slideToggle(400);
	});


                
});

