function splash()
{
	showdiv('splashWrap');
	hidediv('websiteWrap');

}
function index()
{
	hidediv('splashWrap');
	showdiv('websiteWrap');
}

function home()
{
	location = 'index.php#'
	hidediv('splashWrap');
	showdiv('websiteWrap');
}


// HIDE DIV FUNCTION
function hidediv(divname)
{
	var obj = document.getElementById(divname);
	if(obj != null) { obj.style.display = 'none'; }
}
// SHOW DIV FUNCTION
function showdiv(divname)
{
	var obj = document.getElementById(divname);
	if(obj != null) { obj.style.display = 'block'; }	
}