/* JavaScript - www.galangstudio.com
    create date :   april 1, 2006
    created by  :   I Gede Suryagiri,S.Kom (siCentiL Design)
*/
<!-- Hide from old browsers
// -- End Hiding Here -->


function gallery(){
	if (i == 1){
		document.gallery.desc.value = description[0]
		document.gallery.previous.value="       "}
}

function previmg(){
	if (i != 1) {
		i --
		document.img.src = images[i];
		document.gallery.desc.value = description[i];
		document.gallery.next.value = "Next"}
	if (i == 1) {
		document.gallery.previous.value="        "}
	
}

function nextimg(){
	if (i != tot) {
		i ++
		document.gallery.previous.value="Previous"
		image = images[i]
		document.img.src = image
		document.gallery.desc.value = description[i];}
	if (i == tot){
		document.gallery.next.value="    ";}
}

function viewimg(n){
	    i = n
	    image = images[i]
		document.img.src = image
		//document.gallery.desc.value = description[i];
}