var Picture = new Array(); 
var Description = new Array(); 
var jss = 1;
var pss = 12;

Picture[1]  = '01.jpg';
Picture[2]  = '02.jpg';
Picture[3]  = '03.jpg';
Picture[4]  = '04.jpg';
Picture[5]  = '05.jpg';
Picture[6]  = '06.jpg';
Picture[7]  = '07.jpg';
Picture[8]  = '08.jpg';
Picture[9]  = '09.jpg';
Picture[10]  = '10.jpg';
Picture[11]  = '11.jpg';
Picture[12]  = '12.jpg';

Description[1]  = "CASCINA<br />BAGAGGERA1<br /><span class='testo17'><em><strong>programma</strong></em></span><strong><br />ottobre 2006<br />luglio 2007</strong>";
Description[2]  = "CASCINA<br />BAGAGGERA2<br /><span class='testo17'><em><strong>programma</strong></em></span><strong><br />ottobre 2006<br />luglio 2007</strong>";
Description[3]  = "CASCINA<br />BAGAGGERA3<br /><span class='testo17'><em><strong>programma</strong></em></span><strong><br />ottobre 2006<br />luglio 2007</strong>.";
Description[4]  = "CASCINA<br />BAGAGGERA4<br /><span class='testo17'><em><strong>programma</strong></em></span><strong><br />ottobre 2006<br />luglio 2007</strong>";
Description[5]  = "CASCINA<br />BAGAGGERA5<br /><span class='testo17'><em><strong>programma</strong></em></span><strong><br />ottobre 2006<br />luglio 2007</strong>";
Description[6]  = "CASCINA<br />BAGAGGERA6<br /><span class='testo17'><em><strong>programma</strong></em></span><strong><br />ottobre 2006<br />luglio 2007</strong>";
Description[7]  = "CASCINA<br />BAGAGGERA7<br /><span class='testo17'><em><strong>programma</strong></em></span><strong><br />ottobre 2006<br />luglio 2007</strong>";
Description[8]  = "CASCINA<br />BAGAGGERA8<br /><span class='testo17'><em><strong>programma</strong></em></span><strong><br />ottobre 2006<br />luglio 2007</strong>";
Description[9]  = "CASCINA<br />BAGAGGERA9<br /><span class='testo17'><em><strong>programma</strong></em></span><strong><br />ottobre 2006<br />luglio 2007</strong>";
Description[10]  = "CASCINA<br />BAGAGGERA10<br /><span class='testo17'><em><strong>programma</strong></em></span><strong><br />ottobre 2006<br />luglio 2007</strong>";
Description[11]  = "CASCINA<br />BAGAGGERA11<br /><span class='testo17'><em><strong>programma</strong></em></span><strong><br />ottobre 2006<br />luglio 2007</strong>";
Description[12]  = "CASCINA<br />BAGAGGERA12<br /><span class='testo17'><em><strong>programma</strong></em></span><strong><br />ottobre 2006<br />luglio 2007</strong>";

function swap(id) {
 	document.getElementById('immagine').src = 'img/corsi/grandi/'+Picture[id];
	document.getElementById('dettaglio').innerHTML = Description[id];
}

function control(how){
if (how=="F") jss = jss + 1;
if (how=="B") jss = jss - 1;
if (jss > (pss)) jss=1;
if (jss < 1) jss = pss;
swap(jss);
}