var d = document;
var winIE = (navigator.userAgent.indexOf('Opera')==-1 && (d.getElementById && d.documentElement.behaviorUrns)) ? true : false;
function bodySize() {
	if (winIE && d.documentElement.clientWidth) {
		sObj = d.getElementById('wrapgallery');
		//sObj.style.width = 'auto';
		sObj.style.width = (sObj.parentNode.offsetWidth>574) ? '574px' : sObj.style.width;
	}
}
function init() { if (winIE) { bodySize(); } }
onload = init;
onresize = bodySize;
