var printsarray = new Array();
var printspricearray = new Array();

var printsarraysurf = new Array();
var printspricearraysurf = new Array();

/*****************************************************************************/
/* NOTE: ANY CHANGES TO THE VALUES BELOW, YOU MUST SAVE THEN CLOSE YOUR      */
/* BROWSER. RE-OPEN YOUR BROWSER AND ACCESS YOUR SITE - THE NEW VALUES WILL  */
/* APPEAR.                                                                   */
/*****************************************************************************/

/*****************************************************************************/
/* STEP: PACKAGE ITEM AND PRINT ITEM MODIFICATIONS                           */
/*                                                                           */
/* The items for prints as well as packages are stored in the arrays below   */
/* Each item has a description (first column) and a price (second column)    */
/* To add more items: 			                                     */
/* -Copy the last row witin the array                                        */
/* -Paste the row at the end of the array                                    */
/* "printsarray[10]="....."; printspricearr[10]=".....";"                    */
/* -Change the number to the next sequential number                          */
/* -Change the value within the ""                                           */
/*                                                                           */
/* To change an item name or price:                                          */
/* -Change the value within the ""                                           */
/*                                                                           */
/* To delete an item:                                         		     */
/* -Highlight the row you wish to delete                                     */
/* -Press the delete or backspace key                                        */
/* -Remove the empty row by pressing the delete or backspace key             */
/* -Important - renumber the array in numerical order                        */
/*****************************************************************************/

printsarray[0]="Click the arrow for item list"; printspricearray[0]="0.00";
printsarray[1]="4x6 ($ 7.50)";      	  	printspricearray[1]="7.50";
printsarray[2]="5x7 ($ 12.50)";			printspricearray[2]="12.50";
printsarray[3]="8x10 ($ 25.00)";     		printspricearray[3]="25.00";
printsarray[4]="11x14 ($ 50.00)";     		printspricearray[4]="50.00";
printsarray[5]="16x20 ($ 100.00)";     		printspricearray[5]="100.00";
printsarray[6]="Wallets - 10 Wallets ($ 20.00)";      printspricearray[6]="20.00";
printsarray[7]="DVD Slideshow ($ 35.00)";             printspricearray[7]="35.00";
printsarray[8]="4x6 Photo Cards - 4 Cards ($ 20.00)"; printspricearray[8]="20.00";
printsarray[9]="5x7 Photo Cards - 3 Cards ($ 20.00)"; printspricearray[9]="20.00";


printsarraysurf[0]="Click the arrow for item list"; 								printspricearraysurf[0]="0.00";
printsarraysurf[1]="5x7.5 (Center & Printed on a 8.5x11).................................................................$30";      	  					printspricearraysurf[1]="30.00";
printsarraysurf[2]="8x12  (Center & Printed on a 11x17) FREE HIGH RES PHOTO ON A CD.............$50";     						printspricearraysurf[2]="50.00";
printsarraysurf[3]="Sequence Photos Printed on a 11x17 FREE HIGH RES PHOTOS ON A CD.........$125";      			printspricearraysurf[3]="125.00";
printsarraysurf[4]="****SPECIAL**** PHOTO CD - ALL HIGH RES PHOTOS OF 1 PERSON....................$99";             			printspricearraysurf[4]="99.00";


function PhotoOrderFormPopulate()
{

   for (i=0; i<printsarray.length; i++)
   {
        document.PhotoOrderForm.item_number.options[i]=new Option(printsarray[i], printsarray[i])
       
   }
}


function PhotoOrderFormPopulatesurf()
{

   for (i=0; i<printsarraysurf.length; i++)
   {
        document.PhotoOrderFormsurf.item_number.options[i]=new Option(printsarraysurf[i], printsarraysurf[i])
       
   }
}

function replaceFooter() {
     footer = document.getElementById("cobrand_footer").innerHTML;
     footer = footer.replace(' | <a href=\"/cart/\" class=\"nav\">shopping cart</a> | ',' ');
     document.getElementById("cobrand_footer").innerHTML = footer;
}

