/**
 * @author Maurice Sweeney
 */
$(function() { // BEGIN
	$('#contentarea').load('home.html', function() {
		$(this).hide().show()
	});

	$("#timetable").accordion( {
		header : "h3"
	});
	$("#testimonials").accordion( {
		header : "h3"
	});
	/*
	 * 
	 * $('#home').click(function(){ $('#contentarea').load('home.html'); return
	 * false;
	 * 
	 * });
	 */

	$('#aboutus').click(function() {
		$('#contentarea').load('aboutus.html', function() {
			$("#timetable").accordion( {
				header : "h3",
				fillSpace : true,
				alwaysOpen : true,
				active : true
			}, $('#aboutus').css('background-color'));
		});
		return false;

	});
	$('#aboutsherkin').click(function() {
		$('#contentarea').load('sherkin.html');
		return false;

	});



});
