// JavaScript Document


function Navigate(id)
{
	GetContent("content.php?id="+id, _Navigate);
}

function _Navigate(data)
{
	//GetContent(szFile, _f)
}

function SetClass(id, class)
{
	document.getElementById(id).className = class;	
}

function content_callback(data)
{
	document.getElementById("MainContent").innerHTML = data;
}

function DoMenu(id)
{
	switch(id)
	{
		case '1':
			window.location.href='http://www.cybrax.com/';
			break;
		case '5':
			window.location.href='http://www.youtube.com/user/cybraxcyberspace#grid/user/BAEC4EEF7CAA2876';
			break;			
		case '6':
			window.location.href='http://cybraxcyberspace.blogspot.com/';
			break;
		case '8':
			GetData('c.php', 'id=7', content_callback);
			break;
		case '8':
			GetData('c.php', 'id=8', content_callback);
			//GetContent('8', content_callback);
			break;
	default:alert('Not Availlable yet');	
	}
}
