$(document).ready(function(){
	$("select").selectbox(); 
});

/*Manage SiteMap switching - Toogle Style*/
	
	$(".siteMapDisplay h3 a").addClass("closedContent");
	$(".siteMapSwitchDisplay").css("display","none");
	$(".siteMapDisplay h3 a").toggle(function(){
		$(this).addClass("openedContent");
			switchBlockDisplay(this.hash);
			return(false);
		},function(){
			$(this).removeClass("openedContent");
			switchBlockDisplay(this.hash);
			return(false);
	});
	
/*Toggle Map*/