<!--
	var flashDetected = false;
	var flashVersion = 6;
	var plugin = false;
	var i = 0;
	
	// if the mimeType property is detected, using plugin property to detect the flash plugin.
	plugin = (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"]) ? navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin : 0;
	if (plugin) {
		// split the description into words, when a digit is found it is the version number.
		var desc_array = navigator.plugins["Shockwave Flash"].description.split(" ");
		for (i; i < desc_array.length; ++i) {
			if (!isNaN(parseInt(desc_array[i]))) {
				var pluginVersion = desc_array[i];
				break;
			}
		}
		flashDetected = (pluginVersion >= flashVersion);
	}
	
	// if IE was detected, use VBScript to detect the flash plugin.
	else if (navigator.userAgent && navigator.userAgent.indexOf("MSIE")>=0 && (navigator.appVersion.indexOf("Win") != -1)) {
		document.write('<script language=VBScript\>flashDetected = (IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash." & flashVersion)))</script\>');
	}
	
	// if flash is detected, write the flash object/embed code, else write an image.
	if (flashDetected) {
		document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="1000" height="91"><param name="movie" value="/flash/header.swf"><param name="menu" value="false"><param name="quality" value="best"><param name="wmode" value="transparent"><embed src="/flash/header.swf" menu="false" quality="best" wmode="transparent" width="1000" height="91" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed></object>');
	} else {
		document.write('<img src="/img/header.gif" width="989" height="90" alt="Rocket Studio" />');
	}
//-->
