$(document).ready(function() { 
	 var randomBackground = ['header_bg1','header_bg2','header_bg3','header_bg4','header_bg5'];
	 var rndNum = Math.floor(Math.random() * randomBackground.length);
	$('#header').addClass(randomBackground[rndNum]);
});

