        var i = 0;
        var photo0 = new Array("./images/scholarships-general.jpg");
        var photo1 = new Array("./images/fittech.jpg");
        var photo2 = new Array("./images/asiatour.jpg");
        var photo3 = new Array("./images/gradconf.jpg");
		var photo4 = new Array("./images/fillipp_award.jpg");
        var photo5 = new Array("./images/grads-fall.jpg");
        var photoAlbum = new Array(photo0,photo1,photo4);
       
	    var text0 = new Array("<h4>Scholarship Recipients</h4><p>Congratulations to Brooke E. Burt, Dietetic Intern and Master's Student &amp; Natalie K. Hensarling, MS, RD, PhD student, on receiving scholarships from the American Dietetic Association for 2010-2011.</p>");
        var text1 = new Array("<h4>FIT TECH</h4><p>F.I.T. Tech is a program sponsored by Texas Tech University to improve the nutrition, fitness, health, and well being of students, staff, and faculty. For tips, resources, webinars, and contact information, visit: <a href='http://www.depts.ttu.edu/fittech/' target='_blank'>http://www.depts.ttu.edu/fittech/</a></p>");
        var text2 = new Array("<h4>Retailing and Hospitality Field Study Tour to ASIA</h4><p>Tour includes trips to Phuket, Hong Kong and Bangkok. Scheduled to leave on May 10 and come back on May 22.</p>");
        var text3 = new Array("<h4>2007 Graduate Conference</h4><p>RHIM students attended the 12th Annual Graduate Education and Graduate Student Research Conference in Hospitality Tourism held in University of Houston.</p>");
        var text4 = new Array("<h4>Texas Dietetic Association Awards</h4><p>Shelley Fillipp, NS faculty, received the 2008-2009 Texas Dietetic Association Outstanding Dietetic Educator Award.</p>");
        var text5 = new Array("<h4>6 Some Text Goes HERE 6</h4><p>6 Some Text Goes HERE 6<br>6 Some Text Goes HERE 6<br>6 Some Text Goes HERE 6</p>");
        var texts = new Array(text0,text1,text4);

        function randomphoto()
        {
            var randA = Math.floor((photoAlbum.length)*Math.random());

            document.getElementById("randomphoto").innerHTML = "<img src=\""+photoAlbum[randA]+"\">";
            document.getElementById("randomtext").innerHTML = ""+texts[randA]+"";
            
        }

        
        var introphoto0 = new Array("./images/intro-2.jpg");
        var introphoto1 = new Array("./images/intro.jpg");
        var introAlbum = new Array(introphoto1,introphoto1);
        
       function introrandom()
        {
                    var randi = Math.floor((introAlbum.length)*Math.random());
                    document.getElementById("intro-photo").innerHTML = "<img src="+introAlbum[randi]+" alt='From here, it`s possible.' width=460 height=235>";
        
        }
        
       setInterval(randomphoto,10000);
