if (document.images) {
img1 = new Image();
img1.src = "/images/loading-frontpic.jpg";
}

function arrowOn(num)
{
document.images['arrow' + (num)].src = "images/arrow"+(num)+"a.gif"
}

function arrowOff(num)
{
document.images['arrow' + (num)].src = "images/arrow"+(num)+".gif"
}

projtitles = new Array("#","<a href=\"http://tpnevents.com/portfolio/archives/exhibits-archive/exhibits-archive-2011/xbox-at-pax-east-hit-start-jump-in\" class=\"fronttitle\" style=\"text-align:center; margin-bottom:8px;\">Xbox at PAX East, Hit Start & Jump In</a>","<a href=\"http://tpnevents.com/portfolio/archives/exhibits-archive/exhibits-archive-2011/xbox-at-comic-con-2011\" class=\"fronttitle\" style=\"text-align:center; margin-bottom:8px;\">Xbox at Comic-Con 2011</a>","<a href=\"http://tpnevents.com/portfolio/archives/exhibits-archive/exhibits-archive-2011/turtle-beach-e3\" class=\"fronttitle\" style=\"text-align:center; margin-bottom:8px;\">Turtle Beach @ E3</a>","<a href=\"http://tpnevents.com/portfolio/exhibits/world-vision-experience-aids\" class=\"fronttitle\" style=\"text-align:center; margin-bottom:8px;\">World Vision Experience: AIDS</a>","<a href=\"http://tpnevents.com/portfolio/archives/events-archive/events-archive-2008/event-seeds-of-compassion\" class=\"fronttitle\" style=\"text-align:center; margin-bottom:8px;\">Seeds of Compassion</a>","<a href=\"http://tpnevents.com/portfolio/archives/events-archive/events-archive-2011/boeing-787-first-delivery-media-event\" class=\"fronttitle\" style=\"text-align:center; margin-bottom:8px;\">The Boeing Company 787 <BR> First Delivery Media Event</a>")

projdescs = new Array("#","For Xbox, TPN knocked out three stellar <BR>30 x 50 sq. ft. exhibits in exactly four weeks...  <a href=\"http://tpnevents.com/portfolio/archives/exhibits-archive/exhibits-archive-2011/xbox-at-pax-east-hit-start-jump-in\">Details &raquo;</a>","Oh no! Nerds have gone gorgeous. Or at least that is what I am led to believe scanning the pics from the greatest Nerd event of all time, Comic-Con 2011...  <a href=\"http://tpnevents.com/portfolio/archives/exhibits-archive/exhibits-archive-2011/xbox-at-comic-con-2011\">Details &raquo;</a>","Live with a gamer that plays Halo online with the volume so loud that it sounds like WWII is happening in your house?  <a href=\"http://tpnevents.com/portfolio/archives/exhibits-archive/exhibits-archive-2011/turtle-beach-e3\">Details &raquo;</a>","TPN designed and fabricated an immersive experience to raise awareness about the affect of the AIDS pandemic on children in Africa...  <a href=\"http://tpnevents.com/portfolio/exhibits/world-vision-experience-aids\">Details &raquo;</a>","Kick off an international initiative created in conjunction with the Dalai Lama...  <a href=\"http://tpnevents.com/portfolio/archives/events-archive/events-archive-2008/event-seeds-of-compassion\">Details &raquo;</a>","Aviation history was made on September 26th and TPN was a part of that history...  <a href=\"http://tpnevents.com/portfolio/archives/events-archive/events-archive-2011/boeing-787-first-delivery-media-event\">Details &raquo;</a>")

var timer;
var slidenum=Math.floor(Math.random()*4)

function runSlides() {
slidenum=((slidenum)+1);

if ((slidenum)>6)
{
slidenum=1;
}
document.images.frontphoto.src="/images/loading-frontpic.jpg";
document.images.frontphoto.src="/images/front-photo-" + (slidenum) + ".jpg";
document.getElementById('eventtitle').innerHTML = projtitles[slidenum];
document.getElementById('eventdescription').innerHTML = projdescs[slidenum];
timer=setTimeout ('runSlides()',8000)
}

function nextSlide() {

clearTimeout(timer);
slidenum=((slidenum)+1);

if ((slidenum)>6)
{
slidenum=1;
}
document.images.frontphoto.src="images/loading-frontpic.jpg";
document.images.frontphoto.src="images/front-photo-" + (slidenum) + ".jpg";
document.getElementById('eventtitle').innerHTML = projtitles[slidenum]
document.getElementById('eventdescription').innerHTML = projdescs[slidenum]
}

function prevSlide() {

clearTimeout(timer);
slidenum=((slidenum)-1);

if ((slidenum)<1)
{
slidenum=6;
}
document.images.frontphoto.src="images/loading-frontpic.jpg";
document.images.frontphoto.src="images/front-photo-" + (slidenum) + ".jpg";
document.getElementById('eventtitle').innerHTML = projtitles[slidenum]
document.getElementById('eventdescription').innerHTML = projdescs[slidenum]
}


var picnum=1

function nextPic() {

picnum=((picnum)+1);

if ((picnum)>6)
{
picnum=1;
}
document.images.frontphoto.src="images/loading-frontpic.jpg";
document.images.frontphoto.src="images/front-photo-" + (picnum) + ".jpg";
document.getElementById('eventtitle').innerHTML = projtitles[picnum]
document.getElementById('eventdescription').innerHTML = projdescs[picnum]
}

function prevPic() {

picnum=((picnum)-1);

if ((picnum)<1)
{
picnum=6;
}
document.images.frontphoto.src="images/loading-frontpic.jpg";
document.images.frontphoto.src="images/front-photo-" + (picnum) + ".jpg";
document.getElementById('eventtitle').innerHTML = projtitles[picnum]
document.getElementById('eventdescription').innerHTML = projdescs[picnum]
}
