var cc=1;
var ccmax=4;
function colourchange() {
	cc++;
	if(cc>ccmax) cc=1;
	document.getElementById('main_inner').className='test'+cc;
}
