function fixHeight() {
	var oContent = document.getElementById('content-body');
	var oEmbed = document.getElementById('premier-emb');
	// mozilla requires more room for the swf - adding here
	if(oEmbed != null) oContent.style.height = "405px;"
}


function init() {
	fixHeight();
}

window.onload = init;
