function display(sID) {

		oObj = document.getElementById(sID);
			if (oObj) {
			oObj.style.display='inline';
			}
		}
		
			function hide(sID) {
			oObj = document.getElementById(sID);
			if (oObj) {
			oObj.style.display='none';
		}
}

//fuction for menubottom
function get_mnbottom(id){


for (i=1;i<=7;i++)
 {
		if (id==i)
		{
		document.getElementById("menu"+i).className='txt_menu_footer_de';
		}else{
		document.getElementById("menu"+i).className='txt_menu_footer';
		}
  }
}  
///end

//fuction for job

function get_job(id){

for (i=1;i<=2;i++)
 {
		if (id==i)
		{
		display("job_de"+i);
		document.getElementById("job"+i).className='txt_menu_job_de';
		
		}else{
		hide("job_de"+i);
		document.getElementById("job"+i).className='txt_menu_job';
		}
  }
}//-->

///our brunch
function get_brunch(id){

for (i=1;i<=15;i++)
 {
		if (id==i)
		{
		//display("detail"+i);
		document.getElementById("detail"+i).style.display='inline';
		document.getElementById("brunch"+i).className='txt_blue_de';
		}else{
		//hide("detail"+i);
		document.getElementById("detail"+i).style.display='none';
		document.getElementById("brunch"+i).className='txt_blue';
		}
  }
}
///end