//プルダウンリンク
function linkIt(theField) {
	var winTarget = "_self";
	open(theField[theField.selectedIndex].value, winTarget);
}
//マウスオン　メニュー
function onMENU(theField) {
	theField.style.backgroundImage='url(http://www.tanmoto.com/image/pb_menu_wh.gif)';
}
//マウスアウト　メニュー
function offMENU(theField) {
	theField.style.backgroundImage='url(http://www.tanmoto.com/image/pb_menu_bk.gif)';
}