// Set the duration of crossfade (in seconds)
var CrossFadeDuration = 3;

var Picture = new Array(); 
var Caption = new Array();
var Duration = new Array();

Picture[1]  = "angel.jpg";                       
Picture[2]  = "clouds.jpg";                 
Picture[3]  = "chalkoutline.jpg";                       

Duration[1]  = 3000;
Duration[2]  = 3000;
Duration[3]  = 3000;

var tss;
var iss;
var jss = 1;
var pss = Picture.length-1;

var preLoad = new Array();
for (iss = 1; iss < pss+1; iss++){
preLoad[iss] = new Image();
preLoad[iss].src = Picture[iss];}

function runSlideShow(){
if (document.all)	{
document.images.PictureBox.style.filter="blendTrans(duration=2)";
document.images.PictureBox.style.filter="blendTrans(duration=CrossFadeDuration)";
document.images.PictureBox.filters.blendTrans.Apply();}

document.images.PictureBox.src = preLoad[jss].src;

if (document.all) document.images.PictureBox.filters.blendTrans.Play();
SlideShowSpeed = Duration[jss]
jss = jss + 1;
if (jss > (pss)) jss=1;
tss = setTimeout('runSlideShow()', SlideShowSpeed);
}


document.write('</head>');
document.write('<body onload="runSlideShow()">');

document.write('<div style="font-family: Arial;">');
document.write('<table width="100%" border="1">');
document.write('<tr>');
document.write('<td width="152">');
document.write('<img width="150" height="136" alt="40kmh sign" src="signanimated.gif"></td>');

//document.write('<td style="background-image:url(yellowbackground.jpg); width: 670px; font-family: Arial Black; font-size: 28pt;">');
document.write('<td style="background-image:url(yellowbackground.jpg); font-family: Arial Black; font-size: 28pt;">');
document.write('<center>');
document.write('FLASHING LIGHTS<br>');
document.write('for all NSW Schools<br>');
document.write('</center></td>');

document.write('<td width=203>');
document.write('<img name="PictureBox" width=203 height=136 alt="chalk outline" src="chalkoutline.jpg" >');
document.write('</td>');

document.write('</tr>');
document.write('</table>');

document.write('<table width="100%" border="0" cellpadding="2" cellspacing="2">');
document.write('<tr>');
document.write('<td width="154" align="center" valign="top" bgcolor="#CCFFFF">');

document.write('<img src="peterolsen.jpg" width="150" height="194" alt="Peter Olsen">');
document.write('<br>');
document.write('<font face="arial">');
document.write('<strong>');
document.write('Peter Olsen<br><br>');
document.write('</strong>');
document.write('</font>');

document.write('<p style="text-align: left; margin-left: 20px; line-height: 150%; font-size: 10pt;">');
document.write('<a class="nounder" href="index.html">Home</a><br>');
document.write('<a class="nounder" href="background.html">Background</a><br>');
document.write('<a class="nounder" href="rtatrials.html">RTA Lights Trials</a><br>');
document.write('<a class="nounder" href="comparison.html">Lights Comparison</a><br>');
document.write('<a class="nounder" href="media.html">Media Releases</a><br>');
document.write('<a class="nounder" href="publicity.html">Publicity</a><br>');
document.write('<a class="nounder" href="solarmyth.html">Solar Power Myth</a><br>');
document.write('<a class="nounder" href="rtadirtytricks.html">RTA Dirty Tricks</a><br>');
document.write('<a class="nounder" href="anomalies.html">40kmh Anomalies</a><br>');
document.write('<a class="nounder" href="lightsphotos.html">Lights Photos</a><br>');
document.write('<a class="nounder" href="rollout.html">Order Lights Now</a><br>');
document.write('<a class="nounder" href="pricelist.html">Price List</a><br>');
document.write('<a class="nounder" href="legalissues.html">Legal Issues</a><br>');
document.write('<a class="nounder" href="sponsors.html">Sponsors</a><br>');
document.write('<a class="nounder" href="contact.html">Contact</a><br>');

document.write('</p>');
document.write('</td>');

document.write('<td width="30"></td>');

document.write('<td style="vertical-align: top; width: 700px;">');

