window.onload = init;

var theHeaderBackground = Math.floor(Math.random()*3);
var theHeaderBubble = Math.floor(Math.random()*3);
var theHeaderPhrase = Math.floor(Math.random()*3);

var headerBackgrounds = new Array('#7AB972','#EAA043','#6AA1C2');
var headerBubbles = new Array('bubble_green.png','bubble_orange.png','bubble_blue.png');
var headerPhrases = new Array('phrase_events.png','phrase_arts.png','phrase_home.png');

function init() {
	document.getElementById('logoarea').style.backgroundColor = headerBackgrounds[theHeaderBackground];
	document.images['thebubble'].src = 'images/assets/' + headerBubbles[theHeaderBubble];
	document.images['thephrase'].src = 'images/assets/' + headerPhrases[theHeaderPhrase];
}
