//get the width of the browser window
var winWidth = document.all?document.body.clientWidth:window.innerWidth;


//if the window is wider than 800px, hide the scrollbar
if (winWidth >= 960)
	{$("#flash-holder").css({"overflow-x":"hidden", "width":"1314px"});	
	 $("#flash").css({"overflow":"visible"});	 
	 }
//otherwise, show the scrollbar	
else
	{$("#flash-holder").css({"overflow":"visible", "width":"960px"});	
	$("#flash-holder").css({"* html overflow-x":"visible"});
	}

//when the window is resized, re-evaluate the parameters
$(window).resize(function() {
    if (winWidth >= 960)
	{$("#flash-holder").css({"overflow-x":"hidden", "width":"1314px"});	
	 $("* html #flash").css({"width":"1310px"}); //IE6 only
	 $("#flash").css({"overflow":"visible"});	 
	 }
else
	{$("#flash-holder").css({"overflow":"visible", "width":"960px"});		
	$("#flash-holder").css({"* html overflow-x":"visible"});
	}
});
