        var i = 0;
        var photo0 = new Array("./images/fillipp_award.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/megan.smith.jpg");
        var photo5 = new Array("./images/grads-fall.jpg");
        var photoAlbum = new Array(photo0,photo1,photo4);

        var text0 = 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 text1 = new Array("<h4>FIT TECH</h4><p>Make your plans to be a part of FIT Tech V this semester! Watch for announcements of activities on TechAnnounce. Also, it is not too early to be thinking about FIT Tech V in Spring 2009 when we will have our team competition. Get your team of 6 together: 6 faculty, staff, students, or mixed teams for an 8 week fitness program. Teams will register in 1 of the 3 participation levels depending on their fitness levels and goals.</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>Megan Smith</h4><p>Congratulations to Megan Smith on receiving the Mildred B. Davis National Nutrition Fellowship from the American Dietetic Association for $5,000. The fellowship is awarded each year to just one student with clearly defined plans to major in nutrition at the graduate level immediately following completion of the baccalaureate program.</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);