jQuery(document).ready( function($){
	
	if (!($('html').is('#ie7'))) {
		$('#sitemap_link').attr('href', 'javascript:;').data('sitemap_open', false);
		$('#sitemap_container').hide();
		$('#sitemap_link').click(
			function() {
				$('#sitemap_container').stop();
				if ( ! $('#sitemap_link').data('sitemap_open')) {
					//$('#lowerfooter').css({height:'auto'});
					$('#pagefooter').css({height:'auto'});
					$('#sitemap_container').css({height:'auto'}).show();
					$('#main').css('padding-bottom',$('#pagefooter').height());
					$('#pagefooter').css('margin-top', (-1) * $('#pagefooter').height());
					$.scrollTo( '#sitemap_container', 500);
					$('#sitemap_link').data('sitemap_open', true);
				} else {
					$('#sitemap_container').slideUp(500);
					$('#sitemap_link').data('sitemap_open', false);
					//$('#lowerfooter').css({height:'24px'});
					//$('#pagefooter').css({height:'100px'});
					$('#main').css('padding-bottom',100);
					$('#pagefooter').css('margin-top', -100);
				}
			}
		)
	}
});
