// Tour v0.02a
var tourHere,tourControls,tourHand;var tourOnLoad=null;function tourEnter(here){tourControls[0].style.backgroundImage="url("+here+")";if(window.tourTitle)document.title=window.tourTitle+" - "+tourPictures[here][0];else document.title=tourPictures[here][0];var n;for(n=1;n<tourControls.length;n++){if(tourPictures[here][n]){tourControls[n].style.visibility="visible";tourControls[n].style.cursor=tourHand;tourControls[n].onclick=tourFollowDir;}else{tourControls[n].style.visibility="hidden";tourControls[n].style.cursor="";}}tourHere=here;}function tourFollow(href){var n=href.indexOf(":");if(n>=0){if((href.substring(0,n)=="http")&&(href.indexOf("//")<0))window.location=href.substring(n+1,href.length);else window.location=href;}else tourEnter(href);}function tourFollowLink(event){if(!event)event=window.event;var links=window.ieVersion?document.all("tourLink"):document.getElementById("tourLink");var element=window.ieVersion?event.srcElement:event.target;var n=0;while((n<links.length)&&(links[n]!=element))n++;if(!tourLinks[n])return true;tourFollow(tourLinks[n]);return false;}function tourFollowDir(event){if(!event)event=window.event;var element=window.ieVersion?event.srcElement:event.target;var n=0;while((n<tourControls.length)&&(tourControls[n]!=element))n++;if(!tourPictures[tourHere][n])return true;tourFollow(tourPictures[tourHere][n]);return false;}function tourLoad(event){if(!event)event=window.event;if(window.tourPictures){var links=window.ieVersion?document.all("tourLink"):document.getElementsByName("tourLink");for(var n=0;n<links.length;n++){if(window.tourLinks&&tourLinks[n]){links[n].style.cursor=tourHand;links[n].onclick=tourFollowLink;}}tourControls=window.ieVersion?document.all("tourPicture"):document.getElementsByName("tourPicture");tourEnter(tourStart);}if(tourOnLoad)return tourOnLoad();return true;}function tourInsertHTML(){if(!document.styleSheets)return false;document.writeln('<STYLE TYPE="text/css">.tourError {display:none}</STYLE>');document.writeln('<LINK HREF="tour.css" REL="STYLESHEET" TYPE="text/css" MEDIA=ALL>');document.writeln('<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 CLASS="tourBody"><TR><TD ALIGN=CENTER VALIGN=MIDDLE><DIV CLASS="tourPicture" ID="tourPicture" NAME="tourPicture"><TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0><TR>');document.writeln(' <TD CLASS="tourUpLeft" STYLE="visibility:hidden" ID="tourPicture" NAME="tourPicture"></TD>');document.writeln(' <TD CLASS="tourLogoLeft" ID="tourLink" NAME="tourLink"></TD>');document.writeln(' <TD CLASS="tourUp" STYLE="visibility:hidden" ID="tourPicture" NAME="tourPicture"></TD>');document.writeln(' <TD CLASS="tourLogoRight" ID="tourLink" NAME="tourLink"></TD>');document.writeln(' <TD CLASS="tourUpRight" STYLE="visibility:hidden" ID="tourPicture" NAME="tourPicture"></TD>');document.writeln('</TR><TR>');document.writeln(' <TD CLASS="tourLeft" STYLE="visibility:hidden" ID="tourPicture" NAME="tourPicture"></TD>');document.writeln(' <TD COLSPAN=3 CLASS="tourForward" ID="tourPicture" NAME="tourPicture"></TD>');document.writeln(' <TD CLASS="tourRight" STYLE="visibility:hidden" ID="tourPicture" NAME="tourPicture"></TD>');document.writeln('</TR><TR>');document.writeln(' <TD CLASS="tourDownLeft" STYLE="visibility:hidden" ID="tourPicture" NAME="tourPicture"></TD>');document.writeln(' <TD CLASS="tourCreditsLeft" ID="tourLink" NAME="tourLink"></TD>');document.writeln(' <TD CLASS="tourDown" STYLE="visibility:hidden" ID="tourPicture" NAME="tourPicture"></TD>');document.writeln(' <TD CLASS="tourCreditsRight" ID="tourLink" NAME="tourLink"></TD>');document.writeln(' <TD CLASS="tourDownRight" STYLE="visibility:hidden" ID="tourPicture" NAME="tourPicture"></TD>');document.writeln('</TR></TABLE></DIV></TD></TR></TABLE>');return true;}function tourPreload(){if(!window.tourPictures)return false;for(picture in tourPictures)document.writeln('<IMG SRC="'+picture+'" STYLE="display:none">');return true;}if(window.ieVersion>=6.0||window.mozillaVersion>=5.0||window.safariVersion>=522||window.operaVersion>=9.5){tourHand=window.ieVersion?"hand":"pointer";tourInsertHTML();if(window.onload)tourOnLoad=window.onload;window.onload=tourLoad;}