menu_status = new Array(); 

function showHide(theid){
    if (document.getElementById) {
    var switch_id = document.getElementById(theid);

        if(menu_status[theid] != 'show') {
           switch_id.className = 'show';
           menu_status[theid] = 'show';
        }else{
           switch_id.className = 'hide';
           menu_status[theid] = 'hide';
        }
    }
}

function geDate(){
	var d = new Date();
    document.getElementById('DateCode').innerHTML = d.toLocaleString();
}

function alignMenu(){
	document.getElementById('apDiv1').left = document.width+50;
	var x = document.all.apDiv1.style;
	if (x.left<1000){
		x.left = 300
	}
	
}