var imageArray = new Array(); // Image array for pre-loading imageArray[0] = new Image(); imageArray[0].src = "./photos/zach.jpg"; imageArray[1] = new Image(); imageArray[1].src = "./photos/Lydia.jpg"; imageArray[2] = new Image(); imageArray[2].src = "./photos/emilie2022.jpg"; imageArray[3] = new Image(); imageArray[3].src = "./photos/lilly2022.jpg"; imageArray[4] = new Image(); imageArray[4].src = "./photos/elizabeth2022.jpg"; imageArray[5] = new Image(); imageArray[5].src = "./photos/chase2022.jpg"; imageArray[6] = new Image(); imageArray[6].src = "./photos/emma2022.jpg"; imageArray[7] = new Image(); imageArray[7].src = "./photos/victoria2022.jpg"; imageArray[8] = new Image(); imageArray[8].src = "./photos/juliette2022.jpg"; imageArray[9] = new Image(); imageArray[9].src = "./photos/mrsdube2022.jpg"; imageArray[10] = new Image(); imageArray[10].src = "./photos/ben2022.jpg"; imageArray[11] = new Image(); imageArray[11].src = "./photos/bailey2022.jpg"; // -------------------------------------------------------------------------------- // Full-Res Image Section // -------------------------------------------------------------------------------- // Opens full resolution gallery image in a new window with dimensions set for image size function openFullRes(idx, event) { var x = (event.clientX); var y = event.clientY; var width = imageArray[idx].width+20; var height = imageArray[idx].height+20; var strURL = "./fullres_image.php"; strURL += "?img="+imageArray[idx].src; strURL += "&width="+width; strURL += "&height="+height; var strSpecs = "directories=no, fullscreen=no, location=no, menubar=no, "; strSpecs += "resizable=no, scrollbars=no, status=no, titlebar=no, toolbar=no, "; strSpecs += "left="+x+", top="+y+", width="+width+", height="+height; window.open(strURL, "_blank", strSpecs); } // Time delay function for future use function pause(millis) { var date = new Date(); var curDate = null; do { curDate = new Date(); }while(curDate-date < millis); }