function displayFlash () {

	if (document.body.className == 'sullivan') {
		var theUrl = '/images/sullivan.swf?v=1';
		var theAlt = '/images/sullivan.jpg';
		var sAlign = 't';
		var theWidth = '708';
		var theHeight = '346';
	} else {
		var theUrl = '/images/home.swf?v=9';
		var theAlt = '/images/home.jpg';
		var sAlign = 't';
		var theWidth = '980';
		var theHeight = '487';
	}

	var theHtml = '';
	if (flashinstalled == 2 && flashversion >= 7) {
		theHtml = showFlash(theUrl,theWidth,theHeight,sAlign);
	} else theHtml += '<img src="'+theAlt+'" width="'+theWidth+'" height="'+theHeight+'" alt="" />';
	document.getElementById('flash').innerHTML = theHtml;

}

function showFlash ( theUrl, theWidth, theHeight, sAlign ) {
	var theHtml  = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" ';
	theHtml += 'codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" ';
	theHtml += 'width="'+theWidth+'" height="'+theHeight+'" id="video-object">';
	theHtml += '	<param name="allowScriptAccess" value="sameDomain" />';
	theHtml += '	<param name="movie" value="'+theUrl+'" />';
	theHtml += '	<param name="loop" value="true" />';
	theHtml += '	<param name="menu" value="false" />';
	theHtml += '	<param name="quality" value="autohigh" />';
	theHtml += '	<param name="scale" value="noscale" />';
	theHtml += '	<param name="salign" value="'+sAlign+'" />';
	theHtml += '	<param name="wmode" value="transparent" />';
	theHtml += '	<embed src="'+theUrl+'" loop="true" menu="false" quality="autohigh" ';
	theHtml += 'scale="noscale" salign="'+sAlign+'" wmode="transparent" width="'+theWidth+'" height="'+theHeight+'" ';
	theHtml += 'id="video-embed" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" ';
	theHtml += 'pluginspage="http://www.macromedia.com/go/getflashplayer" />';
	theHtml += '</object>';
	return theHtml;
}

window.addEvent('domready',displayFlash);