/*  Homepage swap SWF code  */
<!--
var flash_path = "flash/home/";
var flash_array = ["photo1.swf","photo2.swf","photo3.swf","photo4.swf","photo5.swf"];


function get_random_flash() {
	var rand_flash_index = get_random_num( flash_array.length ) - 1;
	return flash_array[rand_flash_index];
}

function write_random_homepage_animation() {
	if ( hasRightVersion ) {
		// choose a random flash file from the array
		var rand_fn = flash_path + get_random_flash();
		writeFlash("homepage_photo", rand_fn, "355", "254", "#FFFFFF", "opaque", "6,0,29,0");
	} else {
		//alert( "need flash 6 to view" );
		document.write("<img src='images/home/noflash_home.jpg' width='355' height='254' />")
	}
}


function write_newsticker() {	
	if ( hasRightVersion ) {
		writeFlash("news_ticker", flash_path+"news.swf", "247", "119", "#406294", "opaque", "6,0,29,0");
	} else {
		//alert( "need flash 6 to view" );
		document.write("   <img src='images/home/noflash_news.gif' width='247' height='119' border='0' usemap='#news_info' />")
		document.write("   <map name='news_info' id='news_info'>")
		document.write("     <area shape='rect' coords='16,20,192,40' href='news_info/' />")
		document.write("     <area shape='rect' coords='16,41,192,61' href='news_info/' />")
		document.write("     <area shape='rect' coords='16,62,192,82' href='news_info/' />")
		document.write("     <area shape='rect' coords='16,83,192,103' href='news_info/' />")
		document.write("   </map>")
	}
}

			
function get_random_num( limit ) {
	var num = Math.floor( Math.random() * limit ) + 1;
	return num;
}

//-->