//--Academic Publications JavaScript Library//--Show random image on page reloadfunction ApImageRotate(){//--Image file listApImages=new Array()ApImages[0]="images/photos/0506_westcottplaza.jpg";ApImages[1]="images/photos/0405_sandels.jpg";ApImages[2]="images/photos/0507_unioncrosswalk.jpg";ApImages[3]="images/photos/0506_longmire.jpg";ApImages[4]="images/photos/0507_unioncourtyard.jpg";ApImages[5]="images/photos/0507_engschoolnight.jpg";ApImages[6]="images/photos/0506_smallgroup3.jpg";ApImages[7]="images/photos/0507_engschoolstair.jpg";ApImages[8]="images/photos/0506_classfinance.jpg";ApImages[9]="images/photos/0507_lawgreen1.jpg";ApImages[10]="images/photos/0506_medschool.jpg";ApImages[11]="images/photos/0507_medschoolnight.jpg";ApImages[12]="images/photos/0507_classlecture.jpg";ApImages[13]="images/photos/0507_uccbldg.jpg";ApImages[14]="images/photos/0506_filmschool.jpg";ApImages[15]="images/photos/0507_ucdbldg.jpg";ApImages[16]="images/photos/0507_woodwardplaza.jpg";ApImages[17]="images/photos/0507_woodwardplaza2.jpg";ApImages[18]="images/photos/0507_musicwinds.jpg";ApImages[19]="images/photos/0506_dancestudio.jpg";ApImages[20]="images/photos/0506_musicstrings.jpg";ApImages[21]="images/photos/0507_landisfount3.jpg";ApImages[22]="images/photos/0506_classmusiced.jpg";ApImages[23]="images/photos/0507_landisfount4.jpg";ApImages[24]="images/photos/0506_jeffersonsidewalk.jpg";ApImages[25]="images/photos/0506_unionsidewalk.jpg";ApImages[26]="images/photos/fountain2.jpg";ApImages[27]="images/photos/hall4.jpg";ApImages[28]="images/photos/photo01.png";ApImages[29]="images/photos/photo02.png";ApImages[30]="images/photos/photo03.png";ApImages[31]="images/photos/photo04.png";ApImages[32]="images/photos/photo05.png";ApImages[33]="images/photos/photo06.png";//--Image description for alt tag listApImageDescription=new Array()ApImageDescription[0]="Photo of the Westcott Plaza";ApImageDescription[1]="Photo of the Sandels Building";ApImageDescription[2]="Photo of University Union crosswalk";ApImageDescription[3]="Photo of the Longmire Building";ApImageDescription[4]="Photo of students in the Union courtyard";ApImageDescription[5]="Photo of the College of Engineering Building";ApImageDescription[6]="Photo of students near Murphree Hall";ApImageDescription[7]="Photo of stairwell at the Engineering Building";ApImageDescription[8]="Photo of a class in the College of Business";ApImageDescription[9]="Photo of the Village Green at the College of Law";ApImageDescription[10]="Photo of students in the College of Medicine";ApImageDescription[11]="Photo of the College of Medicine Building";ApImageDescription[12]="Photo of students in class";ApImageDescription[13]="Photo of University Center Building C";ApImageDescription[14]="Photo of Reb Braddock Program Director, School of Motion Picture, Television, and Recording Arts";ApImageDescription[15]="Photo of University Center Building D";ApImageDescription[16]="Photo of students at the Woodward Plaza";ApImageDescription[17]="Photo of the Woodward Plaza";ApImageDescription[18]="Photo of woodwinds at the College of Music";ApImageDescription[19]="Photo of a Dance Studio in Mongomery Hall";ApImageDescription[20]="Photo of strings at the College of Music";ApImageDescription[21]="Photo of a statue in Landis Fountain";ApImageDescription[22]="Photo of a class in the College of Music";ApImageDescription[23]="Photo of a statue in Landis Fountain";ApImageDescription[24]="Photo of students walking near Broward Hall";ApImageDescription[25]="Photo of the sidewalk and oaks by the Union";ApImageDescription[26]="Photo of the Westcott Fountain";ApImageDescription[27]="Photo of Dodd Hall";ApImageDescription[28]="Photo of the Westcott Building";ApImageDescription[29]="Photo of the Westcott Building";ApImageDescription[30]="Photo of Dodd Hall";ApImageDescription[31]="Photo of Strozier Library";ApImageDescription[32]="Photo of the Westcott Building";ApImageDescription[33]="Photo of the College of Medicine";//--Add images and descriptions//--Count imagesimageCount=ApImages.length-1;//--Get random numberleftImage=Math.round(Math.random()*imageCount);if (leftImage==imageCount){rightImage=0;}else{rightImage=leftImage+1;}if (document.getElementById("leftphoto") != null ){document.getElementById("leftphoto").src = ApImages[leftImage];document.getElementById("leftphoto").alt = ApImageDescription[leftImage];document.getElementById("leftphoto").id = null;}if (document.getElementById("rightphoto") != null ){document.getElementById("rightphoto").src = ApImages[rightImage];document.getElementById("rightphoto").alt = ApImageDescription[rightImage];document.getElementById("rightphoto").id = null;}}//--Show random Banner on page reloadfunction ApBannerRotate(){//--Banner file listApBanners=new Array()ApBanners[0]="images/banners/banner001.png";ApBanners[1]="images/banners/banner002.png";ApBanners[2]="images/banners/banner003.png";ApBanners[3]="images/banners/banner004.png";ApBanners[4]="images/banners/banner005.png";//--Banner description for alt tag listApBannerDescription=new Array()ApBannerDescription[0]="Photo of University Center A";ApBannerDescription[1]="Photo of Strozier Library";ApBannerDescription[2]="Photo of the Westcott Building";ApBannerDescription[3]="Photo of University Center A";ApBannerDescription[4]="Photo of the Westcott Plaza";//--Add banner and descriptions//--Count bannersbannerCount=ApBanners.length-1;//--Get random numberbannerImage=Math.round(Math.random()*bannerCount);if (document.getElementById("BannerPhoto") != null ){document.getElementById("BannerPhoto").src = ApBanners[bannerImage];document.getElementById("BannerPhoto").alt = ApBannerDescription[bannerImage];document.getElementById("BannerPhoto").id = null;}}//--Show random top-level photo on page reloadfunction ApTopPhotoRotate(){//--Photo file listApTopPhoto=new Array()ApTopPhoto[0]="http://registrar.fsu.edu/images/photos/photo01.png";ApTopPhoto[1]="http://registrar.fsu.edu/images/photos/photo02.png";ApTopPhoto[2]="http://registrar.fsu.edu/images/photos/photo03.png";ApTopPhoto[3]="http://registrar.fsu.edu/images/photos/photo04.png";ApTopPhoto[4]="http://registrar.fsu.edu/images/photos/photo05.png";//--Photo description for alt tag listApTopPhotoDescription=new Array()ApTopPhotoDescription[0]="Photo of University Center A";ApTopPhotoDescription[1]="Photo of Strozier Library";ApTopPhotoDescription[2]="Photo of the Westcott Building";ApTopPhotoDescription[3]="Photo of University Center A";ApTopPhotoDescription[4]="Photo of the Westcott Plaza";//--Add photo and descriptions//--Count photostopphotoCount=ApTopPhoto.length-1;//--Get random numbertopphotoImage=Math.round(Math.random()*topphotoCount);if (document.getElementById("TopPhoto") != null ){document.getElementById("TopPhoto").src = ApTopPhoto[topphotoImage];document.getElementById("TopPhoto").alt = ApTopPhotoDescription[topphotoImage];document.getElementById("TopPhoto").id = null;}}//--Sucker Fish IE hover enablersfHover = function() {	var sfEls = document.getElementById("leftsidebar").getElementsByTagName("LI");	for (var i=0; i<sfEls.length; i++) {		sfEls[i].onmouseover=function() {			this.className+=" sfhover";		}		sfEls[i].onmouseout=function() {			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");		}	}}