document.write('<link rel="styleSheet" href="../styles/js-public.css" type="text/css" media="all" />');

window.onload = function() {
	if (document.getElementById('strip')) { strip_align(); }
	if (document.getElementById('splash')) { splash_align(); } }

strip_align = function() {
	var strip_all = document.getElementById('strip').getElementsByTagName('img');
	var strip_width = 0;
	for (var strip_count = 0; strip_count < strip_all.length; strip_count ++) {
		strip_width = strip_width + strip_all[strip_count].clientWidth + 1; } 
	strip_left = (480 - strip_width - 1) / 2 + "px";
	document.getElementById('strip').style.marginLeft = strip_left; }
	
splash_align = function() {
	var splash_width = document.getElementById('splash').clientWidth;
	splash_left = (480 - splash_width) / 2 + "px";
	document.getElementById('splash').style.marginLeft = splash_left; }