document.write('<img id="slideshowPhoto" width="664px"   height="277px" class="photo"  />');

Pic[0] = 'images/fma_001.jpg';
Pic[1] = 'images/fma_002.jpg';
Pic[2] = 'images/fma_003.jpg';
Pic[3] = 'images/fma_004.jpg';
Pic[3] = 'images/fma_005.jpg';



var t;
var j = 9;
var p = Pic.length;

var preLoad = new Array();
for (i = 0; i < p; i++)
{
	preLoad[i] = new Image();
	preLoad[i].src = Pic[i];
}
if (document.all)
{
	document.images.slideshowPhoto.style.filter="blendTrans(duration=2)";
	document.images.slideshowPhoto.style.filter="blendTrans(duration=crossFadeDuration)";
	document.images.slideshowPhoto.filters.blendTrans.Apply();
}
document.images.slideshowPhoto.src = preLoad[0].src;
if (document.all)
	document.images.slideshowPhoto.filters.blendTrans.Play();
window.onload=function(){
j = 1;
t = setTimeout('RunSlideShow()', slideShowSpeed);
}