// JavaScript Document

window.onload = function () { ini_largeur(); }
window.onresize = function () { ini_largeur(); }

function ini_largeur() 
{
	var obj_photos = document.getElementById('site-photos-header');
	var obj_shadow = document.getElementById('site-shadow');
	var IE6 = false /*@cc_on || @_jscript_version < 5.7 @*/;
	if(IE6) {
		if(obj_photos) {
			obj_photos.style.width = '100%';
			if(obj_photos.offsetWidth < 960) {
				obj_photos.style.width = '960px';
			}
		}
		if(obj_shadow) {
			obj_shadow.style.width = '100%';
			if(obj_shadow.offsetWidth < 960) {
				obj_shadow.style.width = '960px'	;
			} else if (obj_shadow.offsetWidth > 1020) {
				obj_shadow.style.width = '1020px';	
			}
		}
	}
}
