
// ==============================
// Set the following variables...
// ==============================

// Set the slideshow speed (in milliseconds)
var SlideShowSpeed = 3000;

// 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]  = '../home/hp/1.jpg';
Picture[2]  = '../home/hp/2.jpg';
//Picture[3]  = '../home/hp/4.jpg';
//Picture[5]  = '../home/gallery/5.jpg';
//Picture[6]  = '../home/gallery/6.jpg';
//Picture[7]  = '../home/gallery/7.jpg';
//Picture[8]  = '../home/gallery/8.jpg';
//Picture[9]  = '../home/gallery/9.jpg';
//Picture[10]  = '../home/gallery/10.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]  = "<table cellpadding='2' cellspacing='2'><tr><td><font face='helvetica,tahoma,verdana,arial' size='+1' color='white'><b>Kento firma per Relief Records EU</b></font></td></tr><tr><td align='justify'><font color='white'>Sacco o Vanzetti, album d'esordio solista del rapper calabrese Kento uscirą in tutta Italia il 26 ottobre..</font></td></tr><tr><td align='right'><a href='http://www.italiarap.com/ita/rapitaliano/news278.html'><font size='-2' color='FFE009'>Vedi Dettagli</font></a>&nbsp;|&nbsp;<a href='http://www.italiarap.com/ita/multimedia/player70.html'><font size='-2' color='FFE009'>Sacco o Vanzetti [Video]</font></a>&nbsp;&nbsp;</td></tr></table>";
//Caption[1]  = "<table cellpadding='2' cellspacing='2'><tr><td><font face='helvetica,tahoma,verdana,arial' size='+1' color='white'><b>ITALIARAP.com + BOOMBOX</b></font></td></tr><tr><td align='justify'><font color='white'>Italiarap.com nei club: partnership con una delle pił talentuose organizzazioni di eventi hip hop in Italia, BoomBox. </font><font class='text1'>@HOLLYWOOD (Milano): 8 Giugno 2010</font></td></tr><tr><td align='right'><a href='http://www.italiarap.com/ita/eventi/eventi.php'><font size='-2' color='FFE009'>Promuovi i tuoi Eventi Hip Hop</font></a>&nbsp;&nbsp;</td></tr></table>";
Caption[1]  = "<table cellpadding='2' cellspacing='2'><tr><td><font face='helvetica,tahoma,verdana,arial' size='+1' color='white'><b>HIP HOP CONTEST</b></font></td></tr><tr><td align='justify'><font color='white'>Si preannuncia un'estate caldissima all'insegna del grande hip hop. Si parte subito (10 Luglio) con l'Hip Hop Contest New Style 2vs2 di Borgo S.Dalmazzo(CN)..NON MANCARE!</td></tr><tr><td align='right'><a href='http://www.italiarap.com/ita/eventi/evento_rap_445.html'><font size='-2' color='FFE009'>Vai al Dettaglio</font></a>&nbsp;&nbsp;</td></tr></table>";
Caption[2]  = "<table cellpadding='2' cellspacing='2'><tr><td><font face='helvetica,tahoma,verdana,arial' size='+1' color='white'><b>OBIETTIVO U.S.A.</b></font></td></tr><tr><td align='justify'><font color='white'>E' Ufficiale!! Italiarap.com & Gangstasparty.com tornano insieme per offrire ai propri visitatori un numero sempre maggiore di servizi</font></td></tr><tr><td align='right'><a href='http://www.italiarap.com/ita/multimedia/multimedia.html'><font size='-2' color='FFE009'>Gangstasparty TV</font></a> | <a href='http://www.italiarap.com/ita/america/america.html'><font size='-2' color='FFE009'>America</font></a>&nbsp;&nbsp;</td></tr></table>";

//Caption[5]  = "<b>Keri Hilson</b> <i>(courtesy of Interscope R.)</i>";
//Caption[6]  = "Behind The Scenes: <b>Lloyd</b>";
//Caption[7]  = "T.Chung, J.Carter Cash, <b>Snoop Dogg</b> and B.Turcotte";
//Caption[8]  = "Behind The Scenes: <b>LL Cool J</b>";
//Caption[9]  = "<b>Pleasure P</b> <i>(courtesy of Sydney George)</i>";
//Caption[10]  = "Behind The Scenes: <b>Thicke</b>";

// =====================================
// Do not edit anything below this line!
// =====================================

var tss;
var iss;
var jss = 1;
var pss = Picture.length-1;
var idimg = 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);
}

function passa(idimg){
if (idimg && idimg>0) {
	jss = idimg;
}
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();
}
