// JavaScript Document

$(document).ready(function(){

$('#contentCont').attr('class','bgschedule').load('schedule.htm');

$('#mainMenu a:eq(0)').click(function(){
	$('#contentCont').attr('class','bgschedule').load('schedule.htm');
});




<!--SEE A SHOW-->
$('#mainMenu a:eq(1)').click(function(){
	$('#contentCont').attr('class','bgshow').load('SeeShow2.htm');
});


<!--MENUS-->
$('#mainMenu a:eq(2)').click(function(){
	$('#contentCont').attr('class','bgcafe').load('cafe2.htm')
	
});



<!--SPECIAL EVENTS-->
$('#mainMenu a:eq(3)').click(function(){
	$('#contentCont').attr('class','bgevents').load('events2.htm');
});

<!--DIRECTIONS-->
$('#mainMenu a:eq(4)').click(function(){
	$('#contentCont').attr('class','bgdirections').load('directions2.htm');
});


<!--RESIZE CONTENT-->
	var winHeight = $(window).height() - 150; 
	var docHeight = $(document).height();
	

	$(window).resize(function() {
		var winHeight = $(window).height() - 150; 
		var docHeight = $(document).height();
		$("#contentCont").css('height',winHeight);
		$(".iframeHelper").css('height',winHeight);
	});


	$("#contentCont").css('height',winHeight);
	$(".iframeHelper").css('height',winHeight);


$('p').last().addClass('padBottom');
$('#contentCont p').last().css('background-color', 'red');



//end document ready
});

