function resizelights(){


	if( typeof( window.innerWidth ) == 'number' ) {
	//Non-IE
	x =((window.innerWidth)*0.95) - 446;
	
	} else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
	//IE 6+ in 'standards compliant mode'
	x =((document.documentElement.clientWidth)*0.95)-446;
	
	} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
	//IE 4 compatible
	x =((document.body.clientWidth)*0.95)-446;	
	}


x= x - (x % 38) ;
x-=38;

l1 = document.getElementById("dynheader");
l1.style.width= x+"px";

l1 = document.getElementById("dynfooter");
l1.style.width= x+"px";


}

function shift(inid, imagefile){

x=document.getElementById(inid);

x.src= imagefile;

}