$(document).ready(
	function()
	{
		var t = location.href;
		
		t.match( /action=([A-Za-z]+)/ );
		var action = RegExp.$1;
		
		if ( action == "demos" )
			$("a[href*='TeachingLocations'],a[href*='Overview'],a[href*='Broward']").each(
				function()
				{
					$(this).attr( "href", $(this).attr( "href" ).replace( "TeachingLocations", "DemoClasses" ) );
					$(this).attr( "href", $(this).attr( "href" ).replace( "Broward-Boca-Raton", "DemoClassesPL" ) );
					$(this).attr( "href", $(this).attr( "href" ).replace( "Overview", "DemoClasses" ) );
				}
			); 
		
		if ( action == "schedules" )
			$("a[href*='TeachingLocations'],a[href*='Overview'],a[href*='Broward']").each(
				function()
				{
					$(this).attr( "href", $(this).attr( "href" ).replace( "TeachingLocations", "Schedules" ) );
					$(this).attr( "href", $(this).attr( "href" ).replace( "Broward-Boca-Raton", "SchedulesPL" ) );
					$(this).attr( "href", $(this).attr( "href" ).replace( "Overview", "Schedules" ) );
				}
			); 
	}
);