// JavaScript Document

function get(){
	val = document.forms['un_jumper'].url.value;
	if(val!=0){
		location = val+".html";
	}
}

function indicate(){
	drop = document.forms['un_jumper'].url;
	page = document.location.href.substring(document.location.href.lastIndexOf("/")+1);
	for(i=0;i<drop.options.length;i++){
		if(page==drop.options[i].value+".html"){
			drop.selectedIndex = i;
			//document.title = drop.options[i].text;
			if(document.getElementById()){
				
			}
			return;
		}
		///alert(drop.options[i].value);
		//alert(drop.options[i].text);
	}
}

window.onload = indicate;