var images = new Array(18);

images[0]="../images/PIC_0002.JPG";
images[1]="../images/PIC_0001.JPG";
images[2]="../images/PIC_0005.JPG";
images[3]="../images/PIC_0006.JPG";
images[4]="../images/PIC_0007.JPG";
images[5]="../images/PIC_0013.JPG";
images[6]="../images/PIC_0014.JPG";
images[7]="../images/PIC_0015.JPG";
images[8]="../images/PIC_0016.JPG";
images[9]="../images/PIC_0017.JPG";
images[10]="../images/PIC_0019.JPG";
images[11]="../images/PIC_0021.JPG";
images[12]="../images/PIC_0024.JPG";
images[13]="../images/PIC_0025.JPG";
images[14]="../images/PIC_0008.JPG";
images[15]="../images/PIC_0026.jpg";
images[16]="../images/PIC_0027.jpg";
images[17]="../images/PIC_0028.jpg";

var description = new Array(18);
description[0]="The handicraft center front view.";
description[1]="The sidewalk infront of the handicraft center.";
description[2]="A salesgirl packaging the handicraft products.";
description[3]="A visitor browsing through the handicrafts at a store.";
description[4]="A visitor trying to find a suitable bead necklace.";
description[5]="A view from one of the stalls in the center.";
description[6]="Some visitors from Peninsular Malaysia browsing through a store.";
description[7]="A view of some of the handicrafts sold at the center.( Rattan mat, bags, hats,etc.)";
description[8]="A visitor browsing for pearls at a store.";
description[9]="Some visitors browsing through the pearls and necklaces at a store.";
description[10]="Another view from the sidewalk of the center. You can get tailoring service for as low as RM3 here. (Notice a tailor at the farside of the building.)";
description[11]="The KK Plaza shopping complex. A few blocks from the center.";
description[12]="The unfinished (abandoned maybe) building between Sinsuran Complex and KK Plaza.";
description[13]="A view of the handicraft center from afar.";
description[14]="Another visitor looking for something to bring home.";
description[15]="Still close.The handicraft center on the early day. The center opens around 8 or 9 a.m.";
description[16]="The Le Meridien Hotel across the street. It is going to open in the end of this year, 2005.";
description[17]="A view from one of the center's many entrance.";




var thisImage = 0;

function doPast() {
if (document.images && thisImage > 0) {
thisImage--;
document.myShow.src=images[thisImage];
document.myShow.alt=description[thisImage];
	}
}


function doAfter() {
if (document.images && thisImage < 17) {
thisImage++;
document.myShow.src=images[thisImage];
document.myShow.alt=description[thisImage];
	}
}






































