var array_number=0;
var display_number=0;

var slideImage = new Array(36);
slideImage[0]="alexdeskfriendchin.jpg";
slideImage[1]="JJ-radio-mix-SSL-1.jpg";
slideImage[2]="mastermix.jpg";
slideImage[3]="pachydermwinter.jpg";
slideImage[4]="jhstrings_bowsup.jpg";
slideImage[5]="whitebass.jpg";
slideImage[6]="bandhousepachyderm2.jpg";
slideImage[7]="seedyapilegacy.jpg";
slideImage[8]="DrumSetupCC.jpg";
slideImage[9]="AlexnJamesSSL1.jpg";
slideImage[10]="AlexMiniSynthVV.jpg";
slideImage[11]="jimalexblake.jpg";
slideImage[12]="SeedyControl.jpg";
slideImage[13]="NERDLondon.jpg";
slideImage[14]="PWTokyo.jpg";
slideImage[15]="guitar-amps_1.jpg";
slideImage[16]="stoppedinUT.jpg";
slideImage[17]="LiftMeUp.jpg";
slideImage[18]="JJ-SA-SSL-2.jpg";
slideImage[19]="balance.jpg";
slideImage[20]="discoPATokyo.jpg";
slideImage[21]="stuartdesk.jpg";
slideImage[22]="sufistretch.jpg";
slideImage[23]="yogasanscigarettes.jpg";
slideImage[24]="newnewwav.jpg";
slideImage[25]="drumwithDDay.jpg";
slideImage[26]="redshirtdesk.jpg";
slideImage[27]="jhstrings.jpg";
slideImage[28]="pachydermwinter2.jpg";
slideImage[29]="stuartsing.jpg";
slideImage[30]="drumhair.jpg";
slideImage[31]="Nevepachyderm.jpg";
slideImage[32]="johndrums_afar.jpg";
slideImage[33]="nitedj.jpg";
slideImage[34]="alexgrowsweary.jpg";


var slideComment = new Array(36);
slideComment[0]="Producing is serious business";
slideComment[1]="mixing Just Jinjer live radio broadcast in South Africa";
slideComment[2]="Mastermix SSL 4000 G+ The Urban Hillbilly Quartet";
slideComment[3]="Pachyderm main room";
slideComment[4]="string session";
slideComment[5]="Enrique Toussaint";
slideComment[6]="Nighttime in the band house at Pachyderm - I've cut six records here.";
slideComment[7]="Seedy Underbelly's many synthesizers";
slideComment[8]="I like tuning drums.";
slideComment[9]="mixing at Mastermix";
slideComment[10]="Playing minisynth in my former band Vicious Vicious";
slideComment[11]="Bubblemath 11 piece drum kit setup";
slideComment[12]="";
slideComment[13]="I've been known to mix N*E*R*D live on occassion";
slideComment[14]="my buddy Pharrell";
slideComment[15]="my former MN studio Citycabin";
slideComment[16]="moved from Minneapolis to LA - stopped at the Salt Lake";
slideComment[17]="with a band called The Lift";
slideComment[18]="ahh, behind the wheel of the SSL";
slideComment[19]="";
slideComment[20]="a wicked disco system in Tokyo";
slideComment[21]="Stuart over the Neve @ Pachyderm";
slideComment[22]="Yoga and cigarettes @ Pachyderm";
slideComment[23]="Yoga without cigarettes";
slideComment[24]="Jimi and Dirk exerting arpeggios";
slideComment[25]="Division Day let me jam with them for 2 minutes";
slideComment[26]="Keller Coker-Foovy Session @ Pachyderm";
slideComment[27]="";
slideComment[28]="My foot on a foot of snow";
slideComment[29]="Stuart Davis-Bright Apocalypse Session @ Pachyderm";
slideComment[30]="James and the Giant Kit";
slideComment[31]="Neve at Pachyderm";
slideComment[32]="";
slideComment[33]="Third Ear's MCI JH24 (Summer)";
slideComment[34]="";


//one less than total array number (zero inclusive) 
function backImage() {

	if (--array_number==-1) array_number=34;
	display_number=array_number+1; 
	frameWrite();
 
}

//same as total array number (zero inclusive)  
function nextImage() {
 
	if (++array_number==35) array_number=0;
	display_number=array_number+1;
 	frameWrite();
 
}

function frameWrite() {
 
	parent.photos_display.document.writeln("<BODY BGCOLOR='#000000' text='#ffffcc'><DIV ALIGN=LEFT>");
	parent.photos_display.document.writeln("<LINK REL='stylesheet' TYPE='text/css' HREF='css/alexoana.css'></LINK>");
	parent.photos_display.document.writeln("<font face='Arial,Helvetica,sans-serif' text='#ffffcc' size='2'>");
	parent.photos_display.document.writeln("<span class='content'>");
	parent.photos_display.document.writeln(display_number + ' of 35:<br>');
	parent.photos_display.document.writeln(slideComment[array_number]);
	parent.photos_display.document.writeln('</span>');
	parent.photos_display.document.writeln('</font><br>');
	parent.photos_display.document.writeln('<img src=photos/'+ slideImage[array_number] +' vspace=10>');
	parent.photos_display.document.writeln("</DIV></BODY>");
	parent.photos_display.document.close();

}

function frameWriteFirst() {
 
 	parent.photos_display.document.writeln("<HTML><LINK REL='stylesheet' TYPE='text/css' HREF='css/alexoana.css'></LINK><BODY BGCOLOR='#000000' text='#ffffcc'><DIV ALIGN=LEFT>");
	parent.photos_display.document.writeln("<font face='Arial,Helvetica,sans-serif' text='#ffffcc' size='2'>");
	parent.photos_display.document.writeln("<span class='content'>");
	parent.photos_display.document.writeln('1 of 35:<br>');
	parent.photos_display.document.writeln(slideComment[0]);
	parent.photos_display.document.writeln('</span>');
	parent.photos_display.document.writeln('</font><br>');
	parent.photos_display.document.writeln('<img src=photos/'+ slideImage[0] +' vspace=10>');
	parent.photos_display.document.writeln("</DIV></BODY></HTML>");
	parent.photos_display.document.close();

}