$(document).ready(function()
	{
		
		$('ol#stops li a:first').addClass('active');
		var target = $('ol#stops li a:first').attr('href') + "?ajax=true";
		$('div#details').load(target + ' #content div', '', function()
			{
			$('#loading').hide();
			}
		);

		$('div.m2009 ol#stops li a').hover(showTip, hideTip);
		
		function showTip() {
			var title = $(this).text();
			var style = $(this).parent().attr('style');
			$('<div class="tip" style="' + style + '">' + title + '</div>').hide().appendTo('div#map').fadeIn('fast');
		}
		
		function hideTip() { $('div#map div.tip').fadeOut('fast'); }

		$('ol#stops li a').click(function()
			{
				$('#map a').removeClass('active');
				$(this).addClass('active');
				var target = $(this).attr('href');
				
				$('div#details').fadeOut('fast',function()
					{
					$('#loading').show();
					}
				).load(target + ' #content div', '', function()
					{
					$('div#loading').hide();
					$('div#details').fadeIn();
					$.scrollTo('div#details', 600);
					}
				);
				
				this.blur();
				return false;
			}
		);
		
		$('p.top').localScroll({ duration:600 });

		
	}
);
