function changeLocation(menuObj) {
				var i = menuObj.selectedIndex;
				if(i > 0) {
				window.location = menuObj.options[i].value;
				}
             }
			 
			 // JavaScript Document

var currImg = 0;
var currPath = 0;
var gallerySize = 3;
var galleryTitle = new Array(
	"Abdominoplasty",
	"Abdominoplasty",
	"Abdominoplasty",
	"Breast Augmentation",
	"Breast Augmentation",
	"Breast Augmentation",
	"Breast Augmentation",
	"Breast Augmentation",
	"Breast Augmentation",
	"Breast Augmentation",
	"Breast Augmentation",
	"Breast Augmentation",
	"Breast Lift",
	"Breast Lift",
	"Breast Lift",
	"Breast Lift",
	"Breast Lift",
	"Breast Lift",
	"Breast Reconstruction",
	"Breast Reconstruction",
	"Breast Reconstruction",
	"Breast Reconstruction",
	"Breast Reconstruction",
	"Breast Reconstruction",
	"Breast Reconstruction",
	"Breast Reconstruction",
	"Breast Reconstruction",
	"Breast Reconstruction",
	"Breast Reconstruction",
	"Breast Reduction",
	"Breast Reduction",
	"Breast Reduction",
	"Breast Reduction",
	"Breast Reduction",
	"Breast Reduction",
	"Breast Reduction",
	"Breast Reduction",
	"Breast Reduction",
	"Torsoplasty",
	"Torsoplasty",
	"Torsoplasty",
	"Torsoplasty",
	"Torsoplasty",
	"Torsoplasty"
	
)

var picPath = new Array(
	"abdominoplasty",
	"breastAugmentation",
	"breastLift",
	"breastReconstruction",
	"breastReduction",
	"torsoplasty"
)
var patient = new Array(
	"Patient 1",
	"Patient 1",
	"Patient 1",
	"Patient 1",
	"Patient 1",
	"Patient 1",
	"Patient 2",
	"Patient 2",
	"Patient 2",
	"Patient 3",
	"Patient 3",
	"Patient 3",
	"Patient 1",
	"Patient 1",
	"Patient 1",
	"Patient 2",
	"Patient 2",
	"Patient 2",
	"Patient 1",
	"Patient 1",
	"Patient 1",
	"Patient 1",
	"Patient 1",
	"Patient 2",
	"Patient 2",
	"Patient 2",
	"Patient 3",
	"Patient 3",
	"Patient 3",
	"Patient 1",
	"Patient 1",
	"Patient 1",
	"Patient 2",
	"Patient 2",
	"Patient 2",
	"Patient 3",
	"Patient 3",
	"Patient 3",
	"Patient 1",
	"Patient 1",
	"Patient 1",
	"Patient 2",
	"Patient 2",
	"Patient 2"
)


//JY----------------------

function setPic(index1, index2) {
	if (index1 != null)
	window.location.href="gallery.php?procedure=" + index1 + "&patient=" +  index2 + "#slideshow";
	
	if (index1 == "" || index1 == null || index1 < 0)
		index1 = 0;

	if (index2 =="" || index2 == null || index2 < 0)
	index2 = 0;

	document.getElementById("patient").innerHTML = patient[index2];
	document.getElementById("picLeft").style.background = "url(../images/gallery/" + index2 + ".jpg) top left no-repeat";	
	document.getElementById("picRight").style.background = "url(../images/gallery/" + index2 + "A.jpg) top left no-repeat";
	document.getElementById("gallery").innerHTML = galleryTitle[index1];
	document.getElementById("prevLink").onclick = processPrevious;
	document.getElementById("nextLink").onclick = processNext;
	if (index1 != currPath)
	currPath = index1;
	if (currImg != index2)
	currImg = parseInt(index2);
	
		
}




		
function processPrevious() {
	newSlide( -1);
}

function processNext() {
	newSlide(1);
}

function newSlide(direction) {
	var imgCt = patient.length;

		currImg = currImg + direction;
	if (currImg < 0) {
		currImg = imgCt-1;
	}
	if (currImg == imgCt) {
		currImg = 0;
	}
	document.getElementById("picLeft").style.background = "url(../images/gallery/" + currImg + ".jpg) top left no-repeat";	
	document.getElementById("picRight").style.background = "url(../images/gallery/" + currImg + "A.jpg) top left no-repeat";
	document.getElementById("gallery").innerHTML = galleryTitle[currImg];
	document.getElementById("patient").innerHTML = patient[currImg];

}


