var width;

checkBrowserWidth();

attachEventListener(window, "load", checkBrowserWidth, false);

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 > 1024)
	{
		setStylesheet("1280");		
		document.cookie = "tmib_res_layout=" + escape("1280");
	}
	else
	{
		setStylesheet("1024");
		document.cookie = "tmib_res_layout=" + escape("1024");
	}
	
	setFlash();
	
	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;
				}
			}
		}
		size = styleTitle;
	}
	
	return true;
};

function setFlash ()
{
    var width;

    switch(size)
    {
        case "1024": width = 366; break;
        case "1280": width = 646; break;
    }
    
    x = document.getElementById("flash");
    
    if (x)
    {
        var fo = new SWFObject("/flash/SlideShow.swf", "mp_flash", width, "466", "9", "#FFFFFF");
        fo.useExpressInstall('/flash/so_install.swf');
        fo.addParam("wmode", "transparent");
        fo.addVariable("xmlfile", "/flash/" + size + "/SlideShow.xml");
        fo.write(x.id);
    }
    
    return true;
};

