// JavaScript Document
function Hide(theid){
    if (document.getElementById) {
    var switch_id = document.getElementById(theid);
               switch_id.className = 'hide';
   menu_status[theid] = 'hide';
		}
         }
		 
function show(theid,sdg){

//var theid = document.aForm.css.options[document.aForm.css.selectedIndex].value;
    if (document.getElementById) {
    var switch_id = document.getElementById(theid);

        if(menu_status[theid] != 'show') {
           switch_id.className = 'show';
           menu_status[theid] = 'show';
        }
		
         }
		 }
menu_status = new Array(); 
function showHide(theid,sdg){

//var theid = document.aForm.css.options[document.aForm.css.selectedIndex].value;
    if (document.getElementById) {
    var switch_id = document.getElementById(theid);

// alert(switch_id.className);
        if(menu_status[theid] != 'show') {
           switch_id.className = 'show';
           menu_status[theid] = 'show';
        }
		
         }


	if(sdg=="stdsg")
		{
var switch_id2 = document.getElementById("stdsg");
var switch_id3 = document.getElementById("fldsg");
var switch_id4 = document.getElementById("cidsg");
		switch_id2.className = 'detail1';
		switch_id3.className = 'review';
		switch_id4.className = 'email';
}

	if(sdg=="fldsg")
		{
var switch_id2 = document.getElementById("fldsg");
var switch_id3 = document.getElementById("stdsg");
var switch_id4 = document.getElementById("cidsg");
		switch_id2.className = 'review1';
		switch_id3.className = 'detail';
		switch_id4.className = 'email';
}

	if(sdg=="cidsg")
		{
var switch_id2 = document.getElementById("cidsg");
var switch_id3 = document.getElementById("stdsg");
var switch_id4 = document.getElementById("fldsg");
		switch_id2.className = 'email1';
		switch_id3.className = 'detail';
		switch_id4.className = 'review';
}


	if(theid!="detail")
		{
	var	switch_id = document.getElementById("detail");
		if(menu_status["detail"] == 'show') {
		switch_id.className = 'hide';
	          menu_status["detail"] = 'hide';
		   }
		   }
		   
		   if(theid!="review")
		{
	var	switch_id = document.getElementById("review");
		if(menu_status["review"] == 'show') {
		switch_id.className = 'hide';
           menu_status["review"] = 'hide';
		   } 
		   }
		   		   
		   if(theid!="email")
		{
	var	switch_id = document.getElementById("email");
		if(menu_status["email"] == 'show') {
		switch_id.className = 'hide';
           menu_status["email"] = 'hide';
		   }
		   }
		   
		}

//-->