// JavaScript Document
/**************************************************************
	
		Checks if the browaser is IE. If so, sets up 1ms interval,
		checks the size of the window (IE style, but it is only
		used for IE so it doesn't matter), and resizes the content
		holder accordigly.
		
		All other browsers will respect "min-width" css
		
	**************************************************************/
	var intervalHandler=0;
	var counterIfLive=0
	window.onload=function() {
		if (navigator.userAgent.indexOf("MSIE") != -1){
	//		alert("IE: "+navigator.userAgent);
			window.setInterval(setTheSize,1);
			
		}
	}		
	function setTheSize (){
		if (document.body.clientWidth <= 770) {
			//document.getElementById("scaleHolder").style.width="779px";		
			document.getElementById("container").style.width="770px";		
			} else { 
			document.getElementById("container").style.width="100%";			
			
		}
	}
	
