// ==============================
// SET VARIABLES
// ==============================

var urlArray = parseURL();
var fullURL = urlArray['fullURL'];
var pathFile = urlArray['pathFile'];
pathFile = pathFile.substr(6);
if (pathFile == '') {
	pathFile = 'index.html';
}

// ==============================
// RUN ALL ONLOAD JQUERY COMMANDS
// ==============================
$(document).ready(function() {
						   
	$('#homeScroller').load('events_2008.html');
	// ========================================================
	// SET THE ON CLASS TO THE APPROPRIATE MENU BUTTONs
	// ========================================================
	$("#main_menu li ul li a[href^='" + pathFile + "']").addClass('on');
	
	
	// ========================================================
	// SET THE ON CLASS TO THE APPROPRIATE IFRAME TABS
	// ========================================================
	$('#year3').addClass('on');
	
	$('#year3').click(function() {
		$(this).addClass('on');
		$('#year1').removeClass('on');
		$('#year2').removeClass('on');
		$('#year4').removeClass('on');
		$('#homeScroller').load('events_2008.html');
	});
	$('#year1').click(function() {
		$(this).addClass('on');
		$('#year2').removeClass('on');
		$('#year3').removeClass('on');
		$('#year4').removeClass('on');
		$('#homeScroller').load('events_2006.html');
	});
	$('#year2').click(function() {
		$(this).addClass('on');
		$('#year1').removeClass('on');
		$('#year3').removeClass('on');
		$('#year4').removeClass('on');
		$('#homeScroller').load('events_2007.html');
	});
	
	$('#year4').click(function() {
		$(this).addClass('on');
		$('#year1').removeClass('on');
		$('#year2').removeClass('on');
		$('#year3').removeClass('on');
		$('#homeScroller').load('events_2009.html');
	});
	
});

