
checkBrowserWidth();

attachEventListener(window, "resize", checkBrowserWidth, false);




function checkBrowserWidth()
{
	var theWidth = getBrowserWidth();
	
	if (theWidth == 0)
	{
		var resolutionCookie = document.cookie.match(/(^|;)tmib_res_layout[^;]*(;|$)/);

		if (resolutionCookie != null)
		{
			setStylesheet(unescape(resolutionCookie[0].split("=")[1]));
		}
		
		addLoadListener(checkBrowserWidth);
		
		return false;
	}

	if (theWidth <= 1014)
	{
		setStylesheet("738");
		document.cookie = "tmib_res_layout=" + escape("738");
	}

	else if (theWidth > 1014 && theWidth <= 1260)
	{
		setStylesheet("984");
		document.cookie = "tmib_res_layout=" + escape("984");
	}

	else if (theWidth > 1260 && theWidth <= 1506)
	{
		setStylesheet("1230");
		document.cookie = "tmib_res_layout=" + escape("1230");
	}

	else if (theWidth > 1506 && theWidth <= 1752)
	{
		setStylesheet("1476");
		document.cookie = "tmib_res_layout=" + escape("1476");
	}

	else if (theWidth > 1752 && theWidth <= 1998)
	{
		setStylesheet("1722");
		document.cookie = "tmib_res_layout=" + escape("1722");
	}

	else if (theWidth > 1998 && theWidth <= 2244)
	{
		setStylesheet("1968");
		document.cookie = "tmib_res_layout=" + escape("1968");
	}

	else if (theWidth > 2244 && theWidth <= 2490)
	{
		setStylesheet("2214");
		document.cookie = "tmib_res_layout=" + escape("2214");
	}

	else if (theWidth > 2490)
	{
		setStylesheet("2460");
		document.cookie = "tmib_res_layout=" + escape("2460");
	}
	else
	{
		setStylesheet("");
		document.cookie = "tmib_res_layout=";
	}
	
	
	return true;
};




function getBrowserWidth()
{
	if (window.innerWidth)
	{
		return window.innerWidth;
	}
	else if (document.documentElement && document.documentElement.clientWidth != 0)
	{
		return document.documentElement.clientWidth;
	}
	else if (document.body)
	{
		return document.body.clientWidth;
	}
	
	return 0;
};




function setStylesheet(styleTitle)
{
	var currTag;

	if (document.getElementsByTagName)
	{
		for (var i = 0; (currTag = document.getElementsByTagName("link")[i]); i++)
		{
			if (currTag.getAttribute("rel").indexOf("style") != -1 && currTag.getAttribute("title"))
			{
				currTag.disabled = true;

				if(currTag.getAttribute("title") == styleTitle)
				{
					currTag.disabled = false;
				}
			}
		}
	}
	
	return true;
};
