<!-- JavaScript Rollovers -->
        if (document.images)
        {
            home_off = new Image(162, 41);
            home_off.src = "images/home.gif";
            home_on = new Image(162, 41);
			home_on.src = "images/home_roll.gif";
			
			littlea_off = new Image(162, 41);
            littlea_off.src = "images/littlea.gif";
            littlea_on = new Image(162, 41);
			littlea_on.src = "images/littlea_roll.gif";
			
			news_off = new Image(162, 41);
            news_off.src = "images/news.gif";
            news_on = new Image(162, 41);
            news_on.src = "images/news_roll.gif";
			
			collaboration_off = new Image(162, 41);
            collaboration_off.src = "images/collaboration.gif";
            collaboration_on = new Image(162, 41);
            collaboration_on.src = "images/collaboration_roll.gif";
			
			timeline_off = new Image(162, 41);
            timeline_off.src = "images/timeline.gif";
            timeline_on = new Image(162, 41);
            timeline_on.src = "images/timeline_roll.gif";
			
			links_off = new Image(162, 41);
            links_off.src = "images/links.gif";
            links_on = new Image(162, 41);
            links_on.src = "images/links_roll.gif";
			
			contact_off = new Image(162, 41);
            contact_off.src = "images/contact.gif";
            contact_on = new Image(162, 41);
            contact_on.src = "images/contact_roll.gif";
			
			internal_off = new Image(162, 41);
            internal_off.src = "images/internal.gif";
            internal_on = new Image(162, 41);
            internal_on.src = "images/internal_roll.gif";
        }

        function over(imageName)
        {
            if (document.images)
            {
                document[imageName].src = eval(imageName + "_on.src");
            }
        }

        function out(imageName)
        {
            if (document.images)
            {
                document[imageName].src = eval(imageName + "_off.src");
            }
        }
//-->