 var currentslide = "";
$(document).ready(function() {
	
	/********************************************************************************************************************
	SIMPLE ACCORDIAN STYLE MENU FUNCTION
	********************************************************************************************************************/	
	$('div.accordionButton').click(function() {
		if(currentslide == ""){
			$('html, body').animate({ scrollTop: 60000 }, 'slow');
			$("#sitemap").slideDown('normal');
			currentslide = "yes";
		}else{
			$('html, body').animate({ scrollTop: 60000 }, 'slow');
			$("#sitemap").slideUp('normal');
			
			/*$("#sitemap").hide();*/
			currentslide = "";
		}
		/*$('div.accordionContent').slideUp('normal');
		if(currentslide != $(this).attr('id')){
			$(this).next().slideDown('normal');
			currentslide = $(this).attr('id');
		}else{
			currentslide = "";
		}*/
		
	});
	
	/********************************************************************************************************************
	CLOSES ALL DIVS ON PAGE LOAD
	********************************************************************************************************************/	
	$("div.accordionContent").hide();

});
