// JavaScript Document
/*function toggleVisibility(obj) {

	// reset all tabs
	//try {browse.className='BarTab';} catch(e) {} 
	//try {Exblade.className='BarTab';} catch(e) {} 
	alert(obj);
	try {
	// hide all first
	//divnone..className='navtopicHidden';
	divbrowse.className='navtopicHidden';
	divwhatExblade.className='navtopicHidden';
	divaboutus.className='navtopicHidden';

	}
	catch(e)
	{} 
	
	try {
	// show selected
	obj.className='navtopicVis';
	//alert(obj.className);
	}
	catch(e)
	{} 
}*/
function toggleVisibility(obj) {
	//alert(obj);
	var diiv=document.getElementById(obj);
	//alert(diiv);
	//alert('amitava');
	
	try {
	// hide all first
	//divnone..className='navtopicHidden';
	document.getElementById('divbrowse').className='navtopicHidden';
	document.getElementById('divwhatExblade').className='navtopicHidden';
	document.getElementById('divaboutus').className='navtopicHidden';
	document.getElementById('divhospitality').className='navtopicHidden';
	document.getElementById('divpartners').className='navtopicHidden';
	/*document.getElementById('divsponsors').className='navtopicHidden';*/
	document.getElementById('divgallery').className='navtopicHidden';
	/*document.getElementById('divmarchandise').className='navtopicHidden';
	document.getElementById('divcontactus').className='navtopicHidden';*/
	//document.getElementById('divDisplNone').className='navtopicHidden';
	

	}
	catch(e)
	{} 
	
	try {
	// show selected
	diiv.className='navtopicVis';
	document.getElementById('divDisplNone').className='navtopicHidden';
	document.getElementById('divDisplNone').style.display='none';
	//alert(obj.className);
	}
	catch(e)
	{} 
}