function next(num)
{
	var top = 'g'+num+'Top';
	var bottom = 'g'+num+'Bottom';
	var main = 'g'+num+'Main';
	
	document.getElementById(top).style.background='url(\'images/gTop.png\')';	
	document.getElementById(bottom).style.background='url(\'images/gBottom.png\')';	
	document.getElementById(main).style.background='#FF6600';	
	
}
function back(num)
{
	var top = 'g'+num+'Top';
	var bottom = 'g'+num+'Bottom';
	var main = 'g'+num+'Main';
	var color;
	
	if (num==1) color='#990066'; 
	if (num==2) color='#CC0000';
	if (num==3) color='#003366';
	document.getElementById(top).style.background='url(\'images/'+num+'Top.png\')';	
	document.getElementById(bottom).style.background='url(\'images/'+num+'Bottom.png\')';	
	document.getElementById(main).style.background=color;	
	
}

function loadImg(newImg, newBorder, w, h)
{
	document.getElementById('topImg').src=newImg
	document.getElementById('topImgA').href=newImg
	
	document.getElementById('topImg').width=w;
	document.getElementById('topImg').height=h;	
	
	for (var i=1;i<5; i++)
	{
		if(newBorder!=i)
		{
		document.getElementById('imgBox'+i).style.border='1px solid #fff';
		}
	}
}
