window.onload = function() {
	document.getElementById("sub5").style.height="65px";
	document.getElementById("comp").style.backgroundImage="url('../image/white_arrow.gif')";
}
function openMenu(id){

 var idwidth = document.getElementById(id).style.height;
 if((idwidth=='0px')||(idwidth=="")){
	var myAnim = new YAHOO.util.Anim(id, {height:{from:0,to:65}}, 0.6,  YAHOO.util.Easing.easeOut);
	myAnim.animate();
	document.getElementById("box").style.background="#0099cc";
	document.getElementById("comp").style.color="white";
	document.getElementById("comp0").style.color="white";
	document.getElementById("comp").style.backgroundImage="url('../image/white_arrow.gif')"

 }else if(idwidth=='65px'){
	var myAnim = new YAHOO.util.Anim(id, {height:{from:65,to:0}}, 0.2, YAHOO.util.Easing.easeNone);
	myAnim.animate();
	document.getElementById("box").style.background="transparent";
	document.getElementById("comp").style.color="#666666";
	document.getElementById("comp0").style.color="#666666";
	document.getElementById("comp").style.backgroundImage="url('../image/arrow.gif')"

}
}
