function resizeFlash(height) {
	$('flashcontent').style.height = height + 'px';
	$('main').style.height = height + 'px';
}

function changeBackground(color, image) {
	document.body.style.backgroundColor = color;
	document.body.style.backgroundImage = 'url("'+image+'")';
	document.body.style.backgroundRepeat = 'repeat-x';
}