d = document;
var FILE_PATH ="http://www.the-me-group.com/media/"
CACHE = new Array();

function moveSideNav()
{
	if(d.getElementById("index"))
	{
		d.getElementById("sidenav2").innerHTML = d.getElementById('sidenav1').innerHTML; 
	}
}

function checkBackground()
{
	if(!d.getElementById("index"))
	{
		if(d.getElementById("col3"))
		{
			//alert(d.getElementById("col3").childNodes.length)
			if(d.getElementById("col3").childNodes.length > 1)
			{
				d.getElementById("main_back").style.backgroundImage="url(styles/me/i/main_back_3.gif)";
				d.getElementById("content").style.width = "344px";
			}
		}
	}
}

function preLoad()
{	
	var fileNames = new Array('cube0.gif','cube1.gif','cube2.gif','cube3.gif');

	for(i=0;i<fileNames.length;i++)
	{
		CACHE[i] = new Image();
		CACHE[i].src = FILE_PATH + fileNames[i];
	}
}

function swap(toWhatFile)
{
	toWhatFile = toWhatFile +"";
  index1 = toWhatFile.substr(4,1) ;
	d.getElementById("cube").src = CACHE[(index1-0)].src
}
function init()
{
	moveSideNav();
	checkBackground();
	preLoad();
}

