function change_div(val)
			{
			var about = document.getElementById("about");
			var group = document.getElementById("group");
			var priv = document.getElementById("priv");
			var rates = document.getElementById("rates");
			var faq = document.getElementById("faq");
			var contact = document.getElementById("contact");
			var links = document.getElementById("links");
			var home = document.getElementById("frontpage");
			// -->
			<!--
			if (val == "about")
			{
				about.style.display = "block";
				group.style.display = "none";
				priv.style.display = "none";
				rates.style.display = "none";
				faq.style.display = "none";
				contact.style.display = "none";
				links.style.display = "none";
				home.style.display = "none";
			} else if (val == "group") {
				about.style.display = "none";
				group.style.display = "block";
				priv.style.display = "none";
				rates.style.display = "none";
				faq.style.display = "none";
				contact.style.display = "none";
				links.style.display = "none";
				home.style.display = "none";
			} else if (val == "priv") {
				about.style.display = "none";
				group.style.display = "none";
				priv.style.display = "block";
				rates.style.display = "none";
				faq.style.display = "none";
				contact.style.display = "none";
				links.style.display = "none";
				home.style.display = "none";
			} else if (val == "rates") {
				about.style.display = "none";
				group.style.display = "none";
				priv.style.display = "none";
				rates.style.display = "block";
				faq.style.display = "none";
				contact.style.display = "none";
				links.style.display = "none";
				home.style.display = "none";
			} else if (val == "faq") {
				about.style.display = "none";
				group.style.display = "none";
				priv.style.display = "none";
				rates.style.display = "none";
				faq.style.display = "block";
				contact.style.display = "none";
				links.style.display = "none";
				home.style.display = "none";
			} else if (val == "contact") {
				about.style.display = "none";
				group.style.display = "none";
				priv.style.display = "none";
				rates.style.display = "none";
				faq.style.display = "none";
				contact.style.display = "block";
				links.style.display = "none";
				home.style.display = "none";
			} else if (val == "links") {
				about.style.display = "none";
				group.style.display = "none";
				priv.style.display = "none";
				rates.style.display = "none";
				faq.style.display = "none";
				contact.style.display = "none";
				links.style.display = "block";
				home.style.display = "none";
			} else if (val == "home") {
				about.style.display = "none";
				group.style.display = "none";
				priv.style.display = "none";
				rates.style.display = "none";
				faq.style.display = "none";
				contact.style.display = "none";
				links.style.display = "none";
				home.style.display = "block";
			}
		}
