function slide(m){
	var as=document.getElementById(m).getElementsByTagName('a')
	for(i=0;i<as.length;i++){
		as[i].onclick=function(){
			if(this.id=="a0"){
				document.getElementById(m).style.backgroundImage="url(./img/100304menuBg1.jpg)"
				document.getElementById('d0').style.display="block"
				document.getElementById('d1').style.display="none"
				}else{
					document.getElementById(m).style.backgroundImage="url(./img/100304menuBg2.jpg)"
					document.getElementById('d1').style.display="block"
					document.getElementById('d0').style.display="none"
					}
			}
		}
	}
function url(m){
	var d=window.location.search
	var char=d.substr(0,8)
	if(char=="?fishing"){
		document.getElementById(m).style.backgroundImage="url(./img/100304menuBg1.jpg)"
		document.getElementById('d0').style.display="block"
		document.getElementById('d1').style.display="none"	
		}
	if(char=="?outdoor"){
		document.getElementById(m).style.backgroundImage="url(./img/100304menuBg2.jpg)"
		document.getElementById('d1').style.display="block"
		document.getElementById('d0').style.display="none"
		}
	}
