if(navigator.plugins.length) 
{ 
	var i; 
	for(i=0; i < navigator.plugins.length; i++) 
	{ 
		var pluginIdent = navigator.plugins[i].description.split(" "); 
		if(pluginIdent[0] == "Shockwave" && pluginIdent[1] == "Flash") 
		{ 
			var isSwfEnabled = true;  
			var versionArray = pluginIdent[2].split("."); 
			if(versionArray[0] < 6) 
			{ 
				isSwfEnabled = false;
			} 
		} 
		break; 
	} 
} 

function ViewGallery()
{
	alert('For demo purposes only. This button calls a javascript function in the source of this page.');		
}

function doRo(theObj)
{
	theObj.style.backgroundColor='#A8D6D9';
}
	
function doRoOut(theObj)
{
	theObj.style.backgroundColor='';
}

function showMenu(Menu)
{
	document.getElementById(Menu).style.display="block";
}

function hideMenu(Menu)
{
	document.getElementById(Menu).style.display="none";
}	