 	
which_image_loaded = 0;
NUMBER_OF_IMAGES = 17;
ImageNames = new Object();
ImageNames.length = NUMBER_OF_IMAGES - 1;

for (counter = 0; counter < NUMBER_OF_IMAGES; counter++){
    file_number = counter + 1;
    filename = ("images/" + file_number + ".jpg");
    ImageNames[counter] = filename;
}
function changeImage(direction) {
    which_image_loaded += direction;
	
    if (which_image_loaded < 0){which_image_loaded = NUMBER_OF_IMAGES - 1;}
    if (which_image_loaded == NUMBER_OF_IMAGES){which_image_loaded = 0;}
    if (document.images){document.myimage.src = ImageNames[which_image_loaded];}
}

var quotes = new Array();
function displayTXT(i) {

quotes[0]="Pin Up 1955 - 8 x 10: Book Cover of - Burlesque: Legendary Stars of the Stage, published in 2004.";
quotes[1]="1958 Pin Up in Red Dress";
quotes[2]="1950 Pin Up - 8 x 10";
quotes[3]="1950 Pin Up - 8 x 10";
quotes[4]="1958 TV Fundraiser for disadvantage children - 10 x 6 Black/White";
quotes[5]="1950 Pin Up - 8 x 10";
quotes[6]="1956 Burlesque Show in Jurez Mexico";
quotes[7]="1952 Black and White Pin Up - 4 on 8 x 10";
quotes[8]="1952 Black and White Pin Up - 4 on 8 x 10";
quotes[9]="1952 Black and White Pin Up - 4 on 8 x 10";
quotes[10]="1950 Black and White Swimsuit Pin Up - 2 on 8 x 10";
quotes[11]="1952 Pin Up originally done in Black and White - Hand colored in oil by Dee Milo.";
quotes[12]="1952 B/W Pin Up with Feathers";
quotes[13]="1955 Pin Up originally done in Black and White - Hand colored in oil by Dee Milo.";
quotes[14]="On Stage Performing - Limited";
quotes[15]="Photo taken by Earl Hasen in 2000 - Performing at Exotic World 2000. 8 x 10";
quotes[16]="1995 Pin Up’s in color by Earl Hasen - 3 pin up’s on 8 x 10";
/*quotes[17]="18";
quotes[18]="19";
quotes[19]="20";
quotes[20]="21";
quotes[21]="22";
quotes[22]="23";
quotes[23]="HI!";
quotes[24]="hi";
quotes[25]="hi";
quotes[26]="";

quotes[26]="Are you serious?";
quotes[27]="Who said that?";
quotes[28]="Is that all you've got?";
quotes[29]="Zija is tasty!";
quotes[30]="Lets get this party started!";
*/
numOf = which_image_loaded + 1;
document.txt.quo.value=("(Photo "+numOf+") "+quotes[which_image_loaded]);
document.paypal.item_name.value=(quotes[which_image_loaded]);
document.paypal.item_number.value=("Photo "+numOf+" ");
}

