

gate = new Array(3);
gate[0] = "rot_ctr1_bod_ctr3_bod_wrp1_blk4_blk5_custom";
gate[1] = "rot_ctr1_bod_ctr3_bod_wrp1_blk4_blk6_custom";
gate[2] = "rot_ctr1_bod_ctr3_bod_wrp1_blk4_blk7_custom";

var hide;
var show;
var tab5;
var tab6;
var tab7;

function showMe(section) {
	for (i=0; i<gate.length; i++) {
		var hide = document.getElementById(gate[i]).style;
		hide.display = "none";
	}
	show = document.getElementById(section).style;
	show.display = "block";
	tab5 = section.indexOf("5");
	tab6 = section.indexOf("6");
	tab7 = section.indexOf("7");
	if(tab5 > 0){
		document.getElementById('rot_ctr1_bod_ctr3_bod_wrp1_blk4_blk2_custom').className='active';
	}
	else{
		document.getElementById('rot_ctr1_bod_ctr3_bod_wrp1_blk4_blk2_custom').className='inactive';
	}
	if(tab6 > 0){
		document.getElementById('rot_ctr1_bod_ctr3_bod_wrp1_blk4_blk3_custom').className='active';
	}
	else{
		document.getElementById('rot_ctr1_bod_ctr3_bod_wrp1_blk4_blk3_custom').className='inactive';
	}
	if(tab7 > 0){
		document.getElementById('rot_ctr1_bod_ctr3_bod_wrp1_blk4_blk4_custom').className='active';
	}
	else{
		document.getElementById('rot_ctr1_bod_ctr3_bod_wrp1_blk4_blk4_custom').className='inactive';
	}
}

