// JavaScript Document


<!-- Begin
// Set up the image files to be used.
var flash = new Array();
var hatPick = new Array();
// To add more image files, continue with the
// pattern below, adding to the array.

flash[0] = 'flash/clipOne.swf';
flash[1] = 'flash/clipTwo.swf';
flash[2] = 'flash/clipThree.swf';

hatPick[0] = 'images/home_hat.jpg';
hatPick[1] = 'images/home_hat_Lisa.jpg';
hatPick[2] = 'images/home_hat_Dane.jpg';

// do not edit anything below this line

var fl = flash.length;

var flashClip = Math.round(Math.random()*(fl-1));

function showFlash(){
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="260" height="390" id="content_center" align="right"><param name="movie" value="'  + flash[flashClip] + '" /><param name="wmode" value="transparent" /><param naem="align" value="left" /><!--[if !IE]>--><object type="application/x-shockwave-flash" data="' + flash[flashClip] + '" width="260" height="390" align="right"><param name="wmode" value="transparent" /><param naem="align" value="left" /><!--<![endif]--><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a><!--[if !IE]>--></object><!--<![endif]--></object>');
}

function showHatImage(){
	document.write('<div id="home_hat" style="position:absolute; bottom:42px; left:626px; background-image:url(' + hatPick[flashClip] +');  background-repeat:no-repeat; width:450px; height:280px; z-index:-5;"></div>');
}

//  End -->

