<!--
// (C) 2002 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this header.

// ==============================
// Set the following variables...
// ==============================

// Set the slideshow speed (in milliseconds)
var SlideShowSpeed = 5000;
 
// Set the duration of crossfade (in seconds)
var CrossFadeDuration = 3;
 
var Picture = new Array(); // don't change this
var Caption = new Array(); // don't change this
 
// Specify the image files...
// To add more images, just continue
// the pattern, adding to the array below.
// To use fewer images, remove lines
// starting at the end of the Picture array.
// Caution: The number of Pictures *must*
// equal the number of Captions!
Picture[1]  = 'images/pf/sewell.gif';
Picture[2]  = 'images/pf/br.gif';
Picture[3]  = 'images/pf/agy.gif';
Picture[4]  = 'images/pf/pe.gif';
Picture[5]  = 'images/pf/cof.gif';
Picture[6]  = 'images/pf/m3.gif';
//Picture[4]  = 'images/pf/dd.png';
Picture[7]  = 'images/pf/fft.gif';
Picture[8]  = 'images/pf/mc.gif';
//Picture[7]  = 'images/pf/mc.png';
//Picture[8]  = 'images/pf/ax.png';
Picture[9]  = 'images/pf/awe.gif';
//Picture[10]  = 'images/pf/sbh.png';
//Picture[11]  = 'images/pf/ep.jpg';
//Picture[12]  = 'images/pf/sos.jpg';
//Picture[13]  = 'images/pf/cgs.jpg';
 
// Specify the Captions...
// To add more captions, just continue
// the pattern, adding to the array below.
// To use fewer captions, remove lines
// starting at the end of the Caption array.
// Caution: The number of Captions *must*
// equal the number of Pictures!
Caption[1]  = "<a href='http://www.sewellpartners.com.au' target='_blank'>www.sewellpartners.com.au</a> &gt;<br>website design, php, flash, css,<br> logo design, stationery,";
Caption[2]  = "<a href='http://www.botoxrenew.com.au' target='_blank'>www.botoxrenew.com.au</a> &gt;<br>website design, logo design, php, css";
Caption[3]  = "<a href='http://www.agyelectrix.com.au' target='_blank'>www.agyelectrix.com.au</a> &gt;<br>website design, php, css";
Caption[4]  = "<a href='http://www.personaleyes.com.au' target='_blank'>www.personaleyes.com.au</a> &gt;<br>website design, php, flash, logo design <br>blog, marketing material</li></ul>";
//Caption[1]  = "<a href='http://www.solidfi.com.au' target='_blank'>www.solidfi.com.au</a> &gt;<br>website design, php, logo design<br> stationery & marketing";
Caption[5]  = "<a href='http://www.circleoffriends.net.au' target='_blank'>www.circleoffriends.net.au</a> &gt;<br>website design, logo design, php, css";
Caption[6]  = "<a href='http://www.money3.com.au' target='_blank'>www.money3.com.au</a> &gt;<br>website design, flash animation, php<br> marketing materials";
//Caption[4]  = "<a href='http://www.datadotam.com.au' target='_blank'>www.datadota.com.au</a> &gt;<br>website design, css, php";
Caption[7]  = "<a href='http://www.fftsecurity.com' target='_blank'>www.fftsecurity.com</a> &gt;<br>website design, php, flash animation<br>wordpress blog, marketing";
Caption[8]  = "<a href='http://www.moneychoice.com' target='_blank'>www.moneychoice.com</a> &gt;<br>website design, asp, css, flash animation";
//Caption[7]  = "<a href='http://www.moneychoice.com' target='_blank'>www.moneychoice.com</a> &gt;<br>website design, asp, css, flash animation";
//Caption[8]  = "<a href='http://www.assetxcel.com.au' target='_blank'>www.assetxcel.com.au</a> &gt;<br>website design, css";
Caption[9]  = "<a href='http://www.achievewithease.com.au' target='_blank'>www.achievewithease.com.au</a> &gt;<br>website design, css, php, paypal";
//Caption[10]  = "<a href='http://www.saltbush-house.com' target='_blank'>www.saltbush-house.com</a> &gt;<br>website design, flash animation, php, css";
//Caption[11]  = "<a href='http://www.eagleproducts.com.au' target='_blank'>www.eagleproducts.com.au</a> &gt;<br><ul><li>website design</li><li>php</li><li>css</li></ul>";
//Caption[12]  = "<a href='http://www.sosmail.com.au' target='_blank'>www.sosmail.com.au</a> &gt;<br><ul><li>website design</li><li>html</li><li>css</li><li>logo design</li></ul>";
//Caption[13]  = "<a href='http://www.clarksongiacomi.com.au' target='_blank'>www.clarksongiacomi.com.au</a> &gt;<br><ul><li>website design</li><li>css</li><li>html</li></ul>";
 
// =====================================
// Do not edit anything below this line!
// =====================================
 
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.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[jss];
if (document.all) document.images.PictureBox.filters.blendTrans.Play();
jss = jss + 1;
if (jss > (pss)) jss=1;
tss = setTimeout('runSlideShow()', SlideShowSpeed);
}

//-->