//location.href

function menuSelected()
{
	var sm = document.getElementById("S-MENU");
	var m = document.getElementById(sm.value);
	if(m) {
		m.setAttribute("class", "SELECT_MENU");
	}
	
	if(document.getElementById("P-MENU").value == "1") {
		m.setAttribute("class", "SELECT_P_MENU");
	}
}