// javascript to handle dynamic text rollovers on the Portfolio page

// Rollovers for each of the Portfolio Page buttons
descript=new Array()

descript[0]="<span class='Portfolio'><BR><B>Portfolio</B><BR><BR>Click on any thumbnail to view the full-size design or the Additional Work link to view more recent work.</span><BR><BR> "
descript[1]="<span class='Portfolio'><BR><B>Cleveland Golf Website 2001</B><BR><BR>Complete Design, from creation to construction.  Dynamic-HTML menus and JavaScript programming.</span><BR><BR>"
descript[2]="<span class='Portfolio'><BR><B>Sugar Ray Leonard Boxing</B><BR><BR>Design and Construction.</span><BR><BR>"
descript[3]="<span class='Portfolio'><BR><B>ExecuSurv</B><BR><BR>Web Design Concept.</span><BR><BR>"
descript[4]="<span class='Portfolio'><BR><B>Cleveland Golf Website 2002</B><BR><BR>Complete Design, from creation to construction.  Dynamic-HTML menus and JavaScript programming.</span><BR><BR>"
descript[5]="<span class='Portfolio'><BR><B>John Horton Design</B><BR><BR>Web Design Concept.</span><BR><BR>"
descript[6]="<span class='Portfolio'><BR><B>Western Emulsions, Inc.</B><BR><BR>Complete Design, from creation to construction.</span><BR><BR>"


// This shows up along the bottom of the browser windows - status line
stat=new Array()

stat[0]="Click on any thumbnail to view the full-size design or the Additional Work link to view more recent work."
stat[1]="Cleveland Golf Website 2001 - Complete Design, from creation to construction.  Dynamic-HTML menus and JavaScript programming."
stat[2]="Sugar Ray Leonard Boxing - Design and Construction."
stat[3]="ExecuSurv - Web Design Concept."
stat[4]="Cleveland Golf Website 2002- Complete Design, from creation to construction.  Dynamic-HTML menus and JavaScript programming."
stat[5]="John Horton Design - Web Design Concept."
stat[6]="Western Emulsions, Inc. - Complete Design, from creation to construction. "



if (document.all){//if ie4
itemwrite="desc.innerHTML=descript[num]" 
itemclose=""
}

function change(num){
     var name = navigator.appName
     if (name == "Microsoft Internet Explorer") {  // IE only
     eval(itemwrite)
     eval(itemclose)
     }
}

