 // this bit should go into a separate .js file.
function shoplist()
    {itemarray = new MakeArray(8);
		 costarray = new MakeArray(8);
		 itemarray[0] = "8"; //number of things in the array
		 costarray[0] = "sue@wilsonclan.prestel.co.uk" // shops e.mail address.
		 itemarray[1] = "Attack Alarm";
		 costarray[1] = "6.99";
		 itemarray[2] = "Decoy camera";
		 costarray[2] = "19.99";
		 itemarray[3] = "Leather chair";
		 costarray[3] = "99.99";
		 itemarray[4] = "Anglepoise lamp";
		 costarray[4] = "32.99";
		 itemarray[5] = "memo pads";
		 costarray[5] = "5.99";
		 itemarray[6] = "printer chartridge";
		 costarray[6] = "4.69";
		 itemarray[7] = "desk";
		 costarray[7] = "199.99";
		 itemarray[8] = "more stuff";
		 costarray[8] = "20.00";
    }
