var focusImages = new Array(6);
focusImages[0] = "images/tour_full.jpg";
focusImages[1] = "images/tour_showroom.jpg";
focusImages[2] = "images/tour_conference.jpg";
focusImages[3] = "images/tour_wall.jpg"
focusImages[4] = "images/tour_offices.jpg"
focusImages[5] = "images/tour_warehouse.jpg"

var headText = new Array(6);
headText[0] = "<h2>Take a look!</h2>";
headText[1] = "<h2>Product Showroom</h2>";
headText[2] = "<h2>Customer Conference Center</h2>";
headText[3] = "<h2>Wall of Fame</h2>";
headText[4] = "<h2>Our Offices</h2>";
headText[5] = "<h2>Warehouse and Staging Area</h2>";

var bodyText = new Array(6);
bodyText[0] = "<p>Explore the floorplan at right to learn more about our office and how it hleps us offer you top-rate products and services.</p>";
bodyText[1] = "<p>Our product showroom is the perfect place to browse hundreds of promotional products. We continually update our showroom with the latest apparel, giveaways, and high-quality incentive items - come take a look!</p>";
bodyText[2] = "<p>The mision statemnt emblazoned on the wall of our conference center makes it clear that customers are the center of our universe! When you come to visit of course we'll talk shop, but you'll appreciate the comfort and convenience of uor facilities.</p>";
bodyText[3] = "<p>Happy customers aren't an accidental outcome at Piranha Promotions – they're the result of our complete commitment to building trust and respect through each interaction.</p>";
bodyText[4] = "<p>This is where we come up with the perfect promotional products for your needs. While we do a fair bit of brainstorming, we pride ourselves in our ability to identify the most apropriate source, based on your quanity, budget and logistical considerations.</p>";
bodyText[5] = "<p>Whether shipping corporate catalog orders or assisting combining promotional products, printed materials, and other items together, we can manage your stock in-house and monitor inventory status.</p>";

var padText = new Array(6);
padText[0] = "<br><br><br><br><br><br><br>";
padText[1] = "<br><br><br><br><br>";
padText[2] = "<br><br><br><br>";
padText[3] = "<br><br><br><br><br><br>";
padText[4] = "<br><br><br>";
padText[5] = "<br><br><br><br><br>";

function swapTour(target) {
document.floorplan.src = focusImages[target]; 
document.getElementById("tourHead").innerHTML = headText[target];
document.getElementById("tourText").innerHTML = bodyText[target];
document.getElementById("tourSpace").innerHTML = padText[target];
return true;
}

