function setMenuDate(){
	now = new Date();
	weekArray = new Array();
	weekArray = {0:"日",1:"月",2:"火",3:"水",4:"木",5:"金",6:"土"};
	var topMenuMM = now.getMonth()+1;
	var topMenuDD = now.getDate();
	var topMenuWD = now.getDay();
	if ( document.getElementById('topMenuDate') ){
		document.getElementById('topMenuDate').innerHTML = topMenuMM+"月"+topMenuDD+"日（"+weekArray[topMenuWD]+"）";
    		setTimeout("setMenuDate()",60000);
    	}
}

function doWorkSearch(){
	var searchText = "";
	if ( document.getElementById('searchFieldx')){
		searchText = document.getElementById('searchFieldx').value;
		if ( searchText != "" ) {
			jump( "a2.php?option=0&keyword="+encodeURIComponent(searchText) );
			
		}
		else{
			alert( "検索するテキストを入力してください。" );
		}
	}
}