var maxIndex=0;var currIndex=0;var picArray=new Array();var picTypeArray=new Array();var picIDArray=new Array();function pushPic(strURL){img=new Image();img.src=strURL;picArray.push(img);maxIndex+=1;}function clickLeft(){currIndex=currIndex-1;if(currIndex==-1){currIndex=maxIndex-1;}strPicText="Pic "+(currIndex+1)+"/"+maxIndex;$('#picText').html(strPicText);$('#profilePic').hide();$('#profilePic').attr("src",picArray[currIndex].src);$('#profilePic').fadeIn("normal");}function clickRight(){currIndex=Math.abs(((currIndex+1)%maxIndex));strPicText="Pic "+(currIndex+1)+"/"+maxIndex;$('#picText').html(strPicText);$('#profilePic').hide();$('#profilePic').attr("src",picArray[currIndex].src);$('#profilePic').fadeIn("normal");}function centerPic(){picFrame=$('#profilePhotoShadow');pic=$('#profilePic');picFrame.css("left","0px");if(pic.width()<240){offsetX=(275-pic.width())/2;picFrame.css("left",offsetX+"px");}}function showAllFutureDestinations(){$('#futureMoreLink').hide();$('#futureMore').show();}