/* **************************************************
Name: min-width.js
Description: Setting of Minimum Width for IE6
***************************************************** */

var WRAPPER_MIN_W = 960;
var WRAPPER_ID = "Wrapper";

function minWidth(){
	var body = document.documentElement;
	var wrapper  = document.getElementById(WRAPPER_ID);
	
	var bodyWidth = body.clientWidth;

	if(bodyWidth < WRAPPER_MIN_W+2){
		setCss(wrapper, "width", WRAPPER_MIN_W + "px");
	}
	else {
		setCss(wrapper, "width", "auto");
	}
}

if(browser.msie && browser.version=="6.0"){
	addEvent(window, "resize", function(){
		minWidth();
	});
	addEvent(window, "load", function(){
		minWidth();
	});
}