<!--

	var preLoad = new Array();
	var Picture = new Array();

	var agt=navigator.userAgent.toLowerCase();
    var is_major = parseInt(navigator.appVersion);
    var is_minor = parseFloat(navigator.appVersion);
	var is_gecko = (agt.indexOf('gecko') != -1);
    var is_ie     = (agt.indexOf("msie") != -1);
	var is_opera = (agt.indexOf("opera") != -1);

Picture[1] = '/i/top/Naposim.jpg';
Picture[2] = '/i/top/Deca-Dubol.jpg';
Picture[3] = '/i/top/Deca-Durabolin.jpg';
Picture[4] = '/i/top/Jintropin.jpg';
Picture[5] = '/i/top/Winstrol.jpg';
Picture[6] = '/i/top/Nandrolone-Decanoate.jpg';
Picture[7] = '/i/top/Testex-Prolongatum.jpg';
Picture[8] = '/i/top/Testosterone-Propionate.jpg';
Picture[9] = '/i/top/Testosterone-Depot.jpg';
Picture[10] = '/i/top/Testopin.jpg';
Picture[11] = '/i/top/Omnadren.jpg';
Picture[12] = '/i/top/Proviron.jpg';
Picture[13] = '/i/top/Stanabol.jpg';
Picture[14] = '/i/top/Sustanon.jpg';
Picture[15] = '/i/top/Testen.jpg';
Picture[16] = '/i/top/Restandol.jpg';
Picture[17] = '/i/top/Anapolon.jpg';
Picture[18] = '/i/top/Anavar.jpg';

// Set the slideshow speed (in milliseconds)
var SlideShowSpeed = 3000;

// Set the duration of crossfade (in seconds)
var CrossFadeDuration = 3;

var preloadCounter;
var diashowCounter = 1;
var PictureArrayLength = Picture.length-1;
var timer;

for (preloadCounter = 1; preloadCounter < PictureArrayLength+1;  preloadCounter++)
{
	preLoad[preloadCounter] = new Image();
	preLoad[preloadCounter].src = Picture[preloadCounter];
}


function runSlideShow()
{
	if (is_gecko || is_opera)
	{
		document.images.PictureBox.src = preLoad[diashowCounter].src;
	}
	else
	{
		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[diashowCounter].src;
		document.images.PictureBox.filters.blendTrans.Play();
	}
diashowCounter = diashowCounter + 1;
if (diashowCounter > (PictureArrayLength)) diashowCounter=1;
timer = setTimeout('runSlideShow(diashowCounter)', SlideShowSpeed);
}

function stop()
{
	window.clearTimeout(timer);
}

runSlideShow();

//-->

