// JavaScript Document
jQuery(document).ready(function(){
	jQuery('.linkday').click(
		function()
		{
			//see if there is an <a> inside this element
			var eventDay = jQuery('a', this).attr('href');
			eventDay = eventDay.split('#');
			if(!eventDay[1])
			{
				return true;
			}
			eventDay = eventDay[1];
			jQuery('.selectedEvent').removeClass('selectedEvent');
			jQuery('.'+eventDay).addClass('selectedEvent');	
			window.location.hash = '#'+eventDay;
			return true;
		}
	);
	checkEventHash();
});

function checkEventHash()
{
	var hash = window.location.hash;
	if(!hash)
	{
		return;
	}

	hash = hash.replace('#', '');
	if(hash.indexOf('event') != -1)
	{
		jQuery('.selectedEvent').removeClass('selectedEvent');
		jQuery('#'+hash).addClass('selectedEvent');	
	}
	else if(hash.indexOf('day') != -1)
	{
		jQuery('.selectedEvent').removeClass('selectedEvent');
		jQuery('.'+hash).addClass('selectedEvent');	
	}
}
