<!--

<!-- Begin
// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 2000;
// Duration of crossfade (seconds)
var crossFadeDuration = 3;
// Specify the image files
var Pic = new Array();
// to add more images, just continue
// the pattern, adding to the array below


Pic[0] = 'ghirardi music news and gigs images/anl_logo.jpg'
Pic[1] = 'ghirardi music news and gigs images/danger_logo.jpg'
Pic[2] = 'ghirardi music news and gigs images/drongos_logo.jpg'
Pic[3] = 'ghirardi music news and gigs images/gbh_logo.jpg'
Pic[4] = 'ghirardi music news and gigs images/charred_logo.jpg'
Pic[5] = 'ghirardi music news and gigs images/sham_logo.jpg'
Pic[6] = 'ghirardi music news and gigs images/klasse_logo.jpg'
Pic[7] = 'ghirardi music news and gigs images/pink_logo.jpg'
Pic[8] = 'ghirardi music news and gigs images/barnyard_logo.jpg'
Pic[9] = 'ghirardi music news and gigs images/ows_logo.jpg'
Pic[10] = 'ghirardi music news and gigs images/subs_logo.jpg'
Pic[11] = 'ghirardi music news and gigs images/menace_logo.jpg'
Pic[12] = 'ghirardi music news and gigs images/restarts_logo.jpg'
Pic[13] = 'ghirardi music news and gigs images/atv_logo.jpg'
Pic[14] = 'ghirardi music news and gigs images/condition_logo.jpg'
Pic[15] = 'ghirardi music news and gigs images/insanesoc_logo.jpg'
Pic[16] = 'ghirardi music news and gigs images/buzzcocks_logo.jpg'
Pic[17] = 'ghirardi music news and gigs images/blitzkrieg_logo.jpg'
Pic[18] = 'ghirardi music news and gigs images/subhumans_logo.jpg'
Pic[19] = 'ghirardi music news and gigs images/thrills_logo.jpg'
Pic[20] = 'ghirardi music news and gigs images/susan_logo.jpg'


Pic[21] = 'ghirardi music news and gigs images/hazel_logo.jpg'
Pic[22] = 'ghirardi music news and gigs images/lily_logo.jpg'
Pic[23] = 'ghirardi music news and gigs images/los_logo.jpg'
Pic[24] = 'ghirardi music news and gigs images/lurkers_logo.jpg'
Pic[25] = 'ghirardi music news and gigs images/monica_logo.jpg'
Pic[26] = 'ghirardi music news and gigs images/rejects_logo.jpg'
Pic[27] = 'ghirardi music news and gigs images/resist_logo.jpg'
Pic[28] = 'ghirardi music news and gigs images/septic_logo.jpg'
Pic[29] = 'ghirardi music news and gigs images/splodge_logo.jpg'
Pic[30] = 'ghirardi music news and gigs images/tower_logo.jpg'
Pic[31] = 'ghirardi music news and gigs images/vice_logo.jpg'
Pic[32] = 'ghirardi music news and gigs images/varukers_logo.jpg'




// do not edit anything below this line
var t;
var j = 0;
var p = Pic.length;
var preLoad = new Array();
for (i = 0; i < p; i++) {
preLoad[i] = new Image();
preLoad[i].src = Pic[i];
}
function runSlideShow() {
if (document.all) {
document.images.SlideShow.style.filter="blendTrans(duration=2)";
document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShow.filters.blendTrans.Apply();
}
document.images.SlideShow.src = preLoad[j].src;
if (document.all) {
document.images.SlideShow.filters.blendTrans.Play();
}
j = j + 1;
if (j > (p - 1)) j = 0;
t = setTimeout('runSlideShow()', slideShowSpeed);
}
//  End -->

