		var depts = new Array();

		var dept = new Object();
		dept.Title = "account service";
		dept.Description = "At Power Creative each account has an experienced account supervisor and a team of account executives and/or account managers, based on client needs. Project coordinators shepherd projects through the agency.";
		depts[0] = dept;

		var dept = new Object();
		dept.Title = "creative";
		dept.Description = "Our two creative directors initiate and oversee creative strategies, concepting and idea development. Associate Creative Directors, writers and art directors are assigned to each account and every major project.";
		depts[1] = dept;

		var dept = new Object();
		dept.Title = "interactive";
		dept.Description = "Our diversely talented team handles everything from interactive strategy to programming. They make sure the application fits the client’s needs, whether it’s front-to-back-end website development, 3-D animation, flash, video editing, sound effects or e-messaging. You name it, we’re all about it.";
		depts[2] = dept;

		var dept = new Object();
		dept.Title = "media";
		dept.Description = "From concept development to implementation, our media planners and buyers work with the creative and account service teams to make sure our messages reach the right audiences. With superior media vendor relationships, market insight and consumer expertise, our Media Director and his team develop plans that give our clients strategic business advantages.";
		depts[3] = dept;

		var dept = new Object();
		dept.Title = "public relations";
		dept.Description = "Our PR Director manages a department skilled at integrating agency media activities with a variety of other communication tools to provide comprehensive PR plans. This team is always exploring new niches, insights and angles to generate results that start with positive brand awareness and end with a positive bottom line for our clients.";
		depts[4] = dept;

		var dept = new Object();
		dept.Title = "photography";
		dept.Description = "Our photographers are skilled in all facets of photography, from simple product stills to complex, fully styled set shots. We don’t own what we shoot for our clients&mdash;they do. And, while we use our digital studios for most assignments, we also shoot on location. Regardless of subject or setting, the focus is clear: get the shot and the results the client wants.";
		depts[5] = dept;

		var dept = new Object();
		dept.Title = "set design";
		dept.Description = "Set design starts on our own drawing boards. Then we create 3-D renderings of the designs to establish viewpoints and camera angles. This enables the client to walk through the set virtually prior to its construction. Once the client has approved the design, our in-house carpenters take the detailed plans and create their own works of art.";
		depts[6] = dept;

		var dept = new Object();
		dept.Title = "architectural arts";
		dept.Description = "An active member of the American Society of Architectural Illustrators (ASAI), our Architectural Arts Group serves architects, developers and other agencies in the presentation and marketing of architectural projects worldwide. Products and services fall into three categories: architectural illustration, conceptual design and commemorative fine art.";
		depts[7] = dept;

		var dept = new Object();
		dept.Title = "color management";
		dept.Description = "The digital images we shoot go directly from camera to computer where they are color-balanced. All images are archived within our digital asset management system for easy access.";
		depts[8] = dept;

		var dept = new Object();
		dept.Title = "pre-flight";
		dept.Description = "We are the only agency in the region with three Kodak Approval&trade; systems, the highest-quality digital proofing systems available. Calibrated to match press conditions, these high-tech machines offer a preview of how the job will appear in publication. What you see on the proof is what you get in print. This gives us control, and it gives our clients confidence.";
		depts[9] = dept;

		var stopping = 0;

		function ShowHighlight(dept) {

			var objURL = new Object();
			window.location.search.replace( new RegExp( "([^?=&]+)(=([^&]*))?", "g" ), function( $0, $1, $2, $3 ){ objURL[ $1 ] = $3; } );

			if (objURL["tour"] == "1") {

				var navitems = $('TourNav').getElementsByTagName("li");
				for (i=0;i<navitems.length;i++) {

					if (dept == navitems[i].childNodes[0].innerHTML) {
						navitems[i].className = "Selected";
					} else {
						navitems[i].className = "";
					}
				}

				for(i=0;i<depts.length;i++) {

					if (depts[i].Title == dept) {

						$('HighlightImage').src = "/res/images/tour/"+depts[i].Title.replace(/ /,"-")+"-highlight.png";
						$('HighlightImage').style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + "/res/images/tour/"+depts[i].Title.replace(/ /,"-")+"-highlight.png" + "',sizingMethod='scale')";
						$('HighlightImage').height = "383";
						$('HighlightImage').width = "505";
						$('HighlightTitle').innerHTML = depts[i].Title;
						$('HighlightDescription').innerHTML = depts[i].Description;
					}
				}

			} else {
				window.location = "/tour/?tour=1&highlight="+dept;
			}
		}

		function getUpdate(typ,pr1,pr2,pid) {
			if (typ =="state") {
				if (pr1 == 0 && stopping == 0) {
					stopping = 1;
					window.location = "/tour/?tour=1";
				}
			}
		};

		function doIntroStop() {
			sendEvent("stop");
			Element.hide('Intro');
			Effect.Appear('CampusMapContainer');
			Effect.Appear('ReplayIntro');
		}

		function sendEvent(typ,prm) { thisMovie("mpl").sendEvent(typ,prm); };

		function thisMovie(movieName) {
			return $(movieName);
		};

		function cutToTheChase() {
			doIntroStop();
		}

		function replayIntro() {
			stopping=0;
			Element.hide('CampusMapContainer');
			Element.hide('ReplayIntro');
			Effect.Appear('Intro');
			setTimeout("sendEvent('playitem',0)",0);
		}


