$.updateDimensions = function() {
	
		if ($.browser.msie == true && $.browser.version < 7) {
		bodyWidth = $(document).width();
		
		if (bodyWidth < 1005) {
			
			$('div.container').css('width', '1004px');
			
		}
		
		
		if (bodyWidth > 1200) {
			
			$('div.container').css('width', '1200px');
			
		}
	} 	
		
};

$(document).ready(function() {
	
	$.updateDimensions();
	
	
});


function detectFlash() {
var result = false;
if ((navigator.appName == "Microsoft Internet Explorer" && navigator.appVersion.indexOf("Mac") == -1 && navigator.appVersion.indexOf("3.1") == -1) || (navigator.plugins && navigator.plugins["Shockwave Flash"]) || navigator.plugins["Shockwave Flash 2.0"]){
result = true;
}
return result;
}





