//--------------- image script ---------------//


function RunFoo1()
{
    document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="659" height="290">\n');
    document.write('<param name="movie" value="swf/intro_1.swf" />\n');
	document.write('<param name="quality" value="high" />\n');
	document.write('<param name="wmode" value="transparent" />\n');
	document.write('<embed src="swf/intro_1.swf" quality="high" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="659" height="290"></embed>\n');
    document.write('</object>\n');
}

function RunFoo2()
{
    document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="659" height="290">\n');
    document.write('<param name="movie" value="swf/intro_2.swf" />\n');
	document.write('<param name="quality" value="high" />\n');
		document.write('<param name="wmode" value="transparent" />\n');
	document.write('<embed src="swf/intro_2.swf" quality="high" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="659" height="290"></embed>\n');
    document.write('</object>\n');
}

function RunFoo3()
{
    document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="659" height="290">\n');
    document.write('<param name="movie" value="swf/intro_3.swf" />\n');
	document.write('<param name="quality" value="high" />\n');
		document.write('<param name="wmode" value="transparent" />\n');
	document.write('<embed src="swf/intro_3.swf" quality="high" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="659" height="290"></embed>\n');
    document.write('</object>\n');
}
function RunFoo11()
{                    
var whatImage = Math.floor(Math.random()*4);

if(whatImage<=0){
            RunFoo1();
} else if(whatImage<=1){
            RunFoo2();
} else if(whatImage<=2){
            RunFoo1();
} else if(whatImage<=3){
            RunFoo3();

}
}
//--------------- end image script ---------------//




