<!--
	var styles = new Array();
	styles[0] ="";
	styles[1] = 0;
	styles[2] = 1;
	styles[3] = 2;
	styles[4] = 3;
	styles[5] = 4;
	styles[6] = 5;
	styles[7] = 6;
	
	var rnd = Math.ceil(Math.random() * (6));
	//document.writeln("	background-image: url(images/header"+rnd+".jpg);");
	
	document.writeln("<style type=\"text/css\">");	
	document.writeln(".header {");
	document.writeln("	width: 100%;");
	document.writeln("	height: 193px;");
	document.writeln("	background-image: url(../images/header"+rnd+".jpg);");
	document.writeln("	background-position: center;");
	document.writeln("	background-repeat: no-repeat;");
	document.writeln("}");
	document.writeln("</style>");
//-->