// JavaScript Document
tmpStr = '';

function randomHead (){
	
	var rand = Math.round(Math.random() * 5);
	var banner = rand+1;
	
	document.write('<style>body{background-image:url(/us/images/backgrounds/bg_char' + banner + '.jpg);background-position: center 265px;}</style>');
	
	
	if(document.location.href.indexOf('/news/') != -1 || document.location.href.indexOf('/help/') != -1) { 
		document.write('<style>body{background-position: center 355px;}</style>'); 
	}
	else if( document.location.href.indexOf('/jobs/') != -1 ){
		document.write('<style>body{background-position: center 455px !important;}</style>'); 
	}
}

randomHead();