$(document).ready(function()
	{		
		// Slide Sitemap - up or down
		$('#sitemap_tab').toggle(function()
			{
				$('#sitemap:hidden').slideDown();
				$('#sitemap_tab')[0].blur();
				$(this).addClass('on');
				return false;
			},
			function()
			{
				$('#sitemap:visible').slideUp();
				$('#sitemap_tab')[0].blur();
				$(this).removeClass('on');
				return false;
			}
		);
		
		// Force #get_map to work in IE6
		$('#panoramic').append('<a href="http://66.116.226.214" id="get_map_wrapper">&nbsp;</a>');
	}
);