	function Flash()
	{
		this.show = function()
		{
			document.getElementById("flashcontent").style.visibility = 'visible';
		}


		this.hide = function()
		{
			document.getElementById("flashcontent").style.visibility = 'hidden';
		}


		this.display = function(blnDisplay)
		{
			if(blnDisplay == undefined) blnDisplay = true;
			
			if(blnDisplay)
			{
				document.getElementById('flashcontent').style.display = 'block';
			}
			else
			{
				document.getElementById('flashcontent').style.display = 'none';
			}
		}


		this.load = function()
		{
			//alert("load");
			
			if(blnIsIE)
			{
				this.show();
			}

			var safari  = false;
			if(navigator.vendor)
			{
				var vendor 	= navigator.vendor.toLowerCase();
				var safari 	= vendor ? /apple/.test(vendor) : /safari/.test(vendor);
				
				//objFlashVars.isSafari = isSafari;
			}
			
			var objFlashVars	= {
												timestamp:(new Date()).getTime(),
												isSafari:safari
											};
											
			var objParams		= {
												allowscriptaccess:(isSiteOnline() ? "sameDomain" : "always"),
												quality:"high",
												scale:"noscale"
											};
											
			var objAttributes		= {};
			
			swfobject.embedSWF("badnoob_web.swf", "flashcontent", "100%", "100%", "10.0.0","", objFlashVars, objParams, objAttributes);

			/*
			if( so.write('flashcontent') ) // check if flash is written to page, then init SWFMacMouseWheel
    		{
    			var macmousewheel = new SWFMacMouseWheel( so );
			}*/
		}
	}
