//
//
var menu_array = new Array();
menu_array.push({id:"home", label:"H O M E", url:"index.htm"});
menu_array.push({id:"about", label:"A B O U T", url:"about.htm"});
menu_array.push({id:"gallery", label:"G A L L E R Y", url:"gallery.htm"});
menu_array.push({id:"contact", label:"C O N T A C T", url:"contact.htm"});
//
function initPage(){
	var menu_html = new Array();
	for(var i=0; i<menu_array.length; i++){
		var cls = menu_id==menu_array[i].id ? 'menu_text_on' : 'menu_text_off';	
		menu_html.push("<a class='" + cls + "' href='" + menu_array[i].url + "'>" + menu_array[i].label + "</a>");
	}
	menu_html = menu_html.join("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;");
	//
	var footer_html = '<table width="100%">';
	footer_html += '<tr><td><img src="images/spacer.gif" width="10" height="10"></td></tr>';
	footer_html += '<tr><td align="center">' + menu_html + '</td></tr>';
	footer_html += '<tr><td><img src="images/spacer.gif" width="10" height="10"></td></tr>';
	footer_html += '<tr><td align="center"><span class="fineprint">&copy;2010 VIKA B STUDIO All Rights Reserved.</span></td></tr>';
	footer_html += '</table>';
	//
	document.getElementById("menu_div").innerHTML = footer_html;
	if(content_sections){
		toggleVisible(null);
	}
}
//
var content_sections = new Array();
//
function toggleVisible(id){
	if(content_sections.length > 0){
		for(var i in content_sections){
			if(content_sections[i]!=id){
				if(content_sections[i]!=null && content_sections[i]!=""){
					document.getElementById(content_sections[i]).style.display = "none";
				}
			}
		}
		if(id!=null){
			var o = document.getElementById(id);
			o.style.display = o.style.display=="none" ? "block" : "none";
		}
	}
}