// Mans Design & Photography JavaScript file
// Set the slideshow speed (in milliseconds)
var SlideShowSpeed = 0;

// Set the duration of crossfade (in seconds)
var CrossFadeDuration = 0;

var Picture = new Array(); // don't change this
var Caption = new Array(); // don't change this
var showHot = false;       // don't change this

// Specify the image files...
// To add more images, just continue
// the pattern, adding to the array below.
// To use fewer images, remove lines
// starting at the end of the Picture array.
// Caution: The number of Pictures *must*
// equal the number of Captions!

Picture[1]  = 'images/port_0006_LayerComp7.jpg';
Picture[2]  = 'images/port_0002_LayerComp3.jpg';
Picture[3]  = 'images/port_0003_LayerComp4.jpg';
Picture[4]  = 'images/port_0007_LayerComp8.jpg';
Picture[5]  = 'images/port_0001_LayerComp2.jpg';
Picture[6]  = 'images/port_0008_LayerComp9.jpg';
Picture[7]  = 'images/port_0005_LayerComp6.jpg';
Picture[8]  = 'images/port_0009_LayerComp10.jpg';
Picture[9]  = 'images/port_0004_LayerComp5.jpg';
Picture[10] = 'images/port_0010_LayerComp11.jpg';
Picture[11]  = 'images/port_0000_LayerComp1.jpg';

// Specify the Captions...
// To add more captions, just continue
// the pattern, adding to the array below.
// To use fewer captions, remove lines
// starting at the end of the Caption array.
// Caution: The number of Captions *must*
// equal the number of Pictures!




Caption[1]  = "<div class='numberphoto'>2/11</div><div class='captiontext'><strong>Website Redesign:</strong> A complete redesign for the Center for Partnership Studies, a non-profit organization based in California. The site was redesigned and rebuilt in Plone, a content management system. Visit this site at <a href='http://www.partnershipway.org' target='_blank'>www.partnershipway.org</a>.</div>";
Caption[2]  = "<div class='numberphoto'>3/11</div><div class='captiontext'><strong>Presentation Design:</strong> PowerPoint design and presentation graphic creation. These slides were part of the year end Microsoft keynote event for all employees in the US. The PowerPoint slides were the outside two screens of a three screen display. The inside screen was programmed in Watchout, and many of the same graphics were used. </div> ";
Caption[3]  = "<div class='numberphoto'>4/11</div><div class='captiontext'><strong>Corporate Rebrand:</strong> A redesign of all the branded materials of Concur, Inc. Following a style guide, collateral, PowerPoint sales presentations, website, email marketing, event and tradeshow materials and direct mail campaigns were redesigned to fit the new brand standards.</div> ";
Caption[4]  = "<div class='numberphoto'>5/11</div><div class='captiontext'><strong>Website Design:</strong> In Our Own Backyard is a non-profit organization of first-class photojournalists who are committed to alleviating poverty in America by increasing awareness through visual storytelling. Visit this site at <a href='http://www.inourownbackyard.us' target='_blank'>www.inourownbackyard.us</a>.</div> ";
Caption[5]  = "<div class='numberphoto'>6/11</div><div class='captiontext'><strong>Event Design:</strong> Art direction and graphic design for a Premera Blue Cross event given annually to brokers in Alaska. The design included the pieces shown above as well as additional collateral and event signage. </div>";
Caption[6]  = "<div class='numberphoto'>7/11</div><div class='captiontext'><strong>Presentation Design:</strong> PowerPoint template creation as well as additional presentation design for two Microsoft events, MEDC a tier 1 event, and LCA an internal legal event.</div> ";
Caption[7]  = "<div class='numberphoto'>8/11</div><div class='captiontext'><strong>Pay Per Click Banner Ads and Landing Pages:</strong> A series of banner ads and corresponding landing pages and confirmation pages to promote specific software products created by Concur, Inc.</div>";
Caption[8]  = "<div class='numberphoto'>9/11</div><div class='captiontext'><strong>Website Design and Photography: </strong>Website creation for local business owner in University Place, Washington. This site shows businesses located within a few blocks, photos of the stores, descriptions and contact information. Visit this site at <a href='http://www.placesup.com' target='_blank'>www.placesup.com</a>.</div> ";
Caption[9]  = "<div class='numberphoto'>10/11</div><div class='captiontext'><strong>Direct Mail Campaign:</strong> A self mailer and direct mail envelope with a letter (not shown) and survey. Two campaigns were created to meet the two products and markets targeted. </div>";
Caption[10] = "<div class='numberphoto'>11/11</div><div class='captiontext'><strong>Website Design:</strong> A new website design and development for an optometrist located in near the Skykomish River Valley, East of Seattle. Visit this site at <a href='http://www.ahrenseyeworks.com/' target='_blank'>www.ahrenseyeworks.com</a>.</div> ";
Caption[11]  = "<div class='numberphoto'>1/11</div><div class='captiontext'><strong>Event Design: </strong>Art direction and graphic design for a Premera Blue Cross corporate event. The design included the pieces shown above as well as a PowerPoint template, nametags, a tri-fold flyer and several other event signs to be displayed and the conference area.</div>";

// =====================================
// Do not edit anything below this line!
// =====================================

var tss;
var iss;
var jss = 0;
var pss = Picture.length-1;

var preLoad = new Array();
for (iss = 1; iss < pss+1; iss++){
preLoad[iss] = new Image();
preLoad[iss].src = Picture[iss];}

function control(how){
if (showHot){
if (how=="H") jss = 1;
if (how=="F") jss = jss + 1;
if (how=="B") jss = jss - 1;
if (jss > (pss)) jss=1;
if (jss < 1) jss = pss;
if (document.all){
document.images.PictureBox.style.filter="blendTrans(duration=0)";
//document.images.PictureBox.style.filter="blendTrans(duration=CrossFadeDuration)";
document.images.PictureBox.filters.blendTrans.Apply();}
document.images.PictureBox.src = preLoad[jss].src;
if (document.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[jss];
if (document.all) document.images.PictureBox.filters.blendTrans.Play();
}}
