// JavaScript Document

function Hide(theid){
    if (document.getElementById) {
    var switch_id = document.getElementById(theid);
               switch_id.className = 'hide';
   menu_status[theid] = 'hide';
		}
         }


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);

        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 = 'tabdesign1';
		switch_id3.className = 'tabdesignf';
		switch_id4.className = 'tabdesignc';
}

	if(sdg=="fldsg")
		{
var switch_id2 = document.getElementById("fldsg");
var switch_id3 = document.getElementById("stdsg");
var switch_id4 = document.getElementById("cidsg");
		switch_id2.className = 'tabdesignf1';
		switch_id3.className = 'tabdesign';
		switch_id4.className = 'tabdesignc';
}

	if(sdg=="cidsg")
		{
var switch_id2 = document.getElementById("cidsg");
var switch_id3 = document.getElementById("stdsg");
var switch_id4 = document.getElementById("fldsg");
		switch_id2.className = 'tabdesignc1';
		switch_id3.className = 'tabdesign';
		switch_id4.className = 'tabdesignf';
}


	if(theid!="web")
		{
	var	switch_id = document.getElementById("web");
		if(menu_status["web"] == 'show') {
		switch_id.className = 'hide';
	          menu_status["web"] = 'hide';
			 		   }
		   }
		   
		   if(theid!="flash")
		{
	var	switch_id = document.getElementById("flash");
		if(menu_status["flash"] == 'show') {
		switch_id.className = 'hide';
           menu_status["flash"] = 'hide';
		   		   }
		   }
		   		   
		   if(theid!="corporate")
		{
	var	switch_id = document.getElementById("corporate");
		if(menu_status["corporate"] == 'show') {
		switch_id.className = 'hide';
           menu_status["corporate"] = 'hide';

		   }
		   }
		   
		}

//-->

