	function init(){
		window.onresize=function adjustHeader() {
		if (document.getElementById) {
			// get the new dimensions
			var w,h;
			if (self.innerHeight) { 
				// all except Explorer
				w = self.innerWidth;
				h = self.innerHeight;
			} else if (document.documentElement && document.documentElement.clientHeight) { 
				// Explorer 6 Strict Mode 
				w = document.documentElement.clientWidth;
				h = document.documentElement.clientHeight;
			} else if (document.body) { 
				// other Explorers	
				w = document.body.clientWidth;
				h = document.body.clientHeight;
			}
			
			// adjust to it
			logoObj=document.getElementById('logo');
			if (w<750) {
				// if too small					
				logoObj.style.marginTop='0px';
				logoObj.style.float='left'
				logoObj.style.position='absolute';
			} else {
				// side by side
				logoObj.style.float='right'
				logoObj.style.marginTop='54px';
				logoObj.style.marginRight='10px';
				logoObj.style.marginBottom='0px';
				logoObj.style.marginLeft='0px';
				logoObj.style.position='relative';
			}
		}
	}	
}

function multipleOnload()
{
  init();
  //initLightbox();
}
window.onload = multipleOnload;