/* board rolling */
function OverStyle(obj) {												
	document.getElementById(obj).style.backgroundColor = '#f5f5f5';											
}	
function OutStyle(obj) {											
	document.getElementById(obj).style.backgroundColor = '#ffffff';											
}


/* FAQ */
function MenuQnADisplay(num,count) {
	for(var i = 1; i <= count; i++){
		if(i == num){
			document.getElementById("answer"+num).style.display = "";
		} else {
			document.getElementById("answer"+i).style.display = "none";
		}
	}
} 

/* admin */
function admin_login() {
	alert('공급자 관리자 모드로 로그인 되었습니다.');
	document.location.href="../../html_coding/workIntro/work_intro1106.html"
}