home *** CD-ROM | disk | FTP | other *** search
- <html>
- <head>
- <title>Fun Times</title>
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-
- <style>
-
- IMG {
- position:relative;
- }
-
- .TextHolder01{
- cursor:hand;
- position:relative;
- font-family:"Arial", "Helvetica", "sans-serif";
- font-size:24pt;
- font-weight:bold;
- text-align:center;
- color:#003399;
- }
-
-
- .ParentLayer {
- border-style:groove;
- border-color:green;
- border-width:0px;
- }
-
- .ImageHolder {
- cursor:hand;
- }
-
- .VideoHolder {
- cursor:hand;
- }
-
- .Moveable01 {
- cursor:hand;
- position:relative;
- font-family:"Arial";
- font-size:12pt;
- font-style:italic;
- font-weight:bold;
- text-align:left;
- color:#ffffff;
- }
-
- .Fixed01 {
- font-family: Arial, Helvetica, sans-serif;
- font-size: 7pt;
- font-weight: normal;
- font-style: italic;
- color: #003399;
- text-align: center
- }
-
- .Fixed02 {
- cursor:arrow;
- font-family: Arial, Helvetica, sans-serif;
- font-size: 7pt;
- font-weight: normal;
- font-style: italic;
- color: #ffff99;
- text-align: center
- }
-
- .Dynamic01 {
- cursor:arrow;
- position:relative;
- font-family:"Arial";
- font-size:12pt;
- font-style:italic;
- font-weight:bold;
- text-align:left;
- color:#ffff00;
- }
-
- .TextHolder02 { cursor:hand; position:relative; font-family:"Arial", "Helvetica", "sans-serif"; font-size:12pt; text-align:left; color:#000000; ; font-weight: bold}
-
- .SoundClip {
- cursor:hand;
- position:relative;
- }
- </style>
-
- <script language="JavaScript">
- <!--
- function MM_timelinePlay(tmLnName, myID) { //v1.2
- //Copyright 1997 Macromedia, Inc. All rights reserved.
- var i,j,tmLn,props,keyFrm,sprite,numKeyFr,firstKeyFr,propNum,theObj,firstTime=false;
- if (document.MM_Time == null) MM_initTimelines(); //if *very* 1st time
- tmLn = document.MM_Time[tmLnName];
- if (myID == null) { myID = ++tmLn.ID; firstTime=true;}//if new call, incr ID
- if (myID == tmLn.ID) { //if Im newest
- setTimeout('MM_timelinePlay("'+tmLnName+'",'+myID+')',tmLn.delay);
- fNew = ++tmLn.curFrame;
- for (i=0; i<tmLn.length; i++) {
- sprite = tmLn[i];
- if (sprite.charAt(0) == 's') {
- if (sprite.obj) {
- numKeyFr = sprite.keyFrames.length; firstKeyFr = sprite.keyFrames[0];
- if (fNew >= firstKeyFr && fNew <= sprite.keyFrames[numKeyFr-1]) {//in range
- keyFrm=1;
- for (j=0; j<sprite.values.length; j++) {
- props = sprite.values[j];
- if (numKeyFr != props.length) {
- if (props.prop2 == null) sprite.obj[props.prop] = props[fNew-firstKeyFr];
- else sprite.obj[props.prop2][props.prop] = props[fNew-firstKeyFr];
- } else {
- while (keyFrm<numKeyFr && fNew>=sprite.keyFrames[keyFrm]) keyFrm++;
- if (firstTime || fNew==sprite.keyFrames[keyFrm-1]) {
- if (props.prop2 == null) sprite.obj[props.prop] = props[keyFrm-1];
- else sprite.obj[props.prop2][props.prop] = props[keyFrm-1];
- } } } } }
- } else if (sprite.charAt(0)=='b' && fNew == sprite.frame) eval(sprite.value);
- if (fNew > tmLn.lastFrame) tmLn.ID = 0;
- } }
- }
-
- function MM_timelineGoto(tmLnName, fNew, numGotos) { //v2.0
- //Copyright 1997 Macromedia, Inc. All rights reserved.
- var i,j,tmLn,props,keyFrm,sprite,numKeyFr,firstKeyFr,lastKeyFr,propNum,theObj;
- if (document.MM_Time == null) MM_initTimelines(); //if *very* 1st time
- tmLn = document.MM_Time[tmLnName];
- if (numGotos != null)
- if (tmLn.gotoCount == null) tmLn.gotoCount = 1;
- else if (tmLn.gotoCount++ >= numGotos) {tmLn.gotoCount=0; return}
- jmpFwd = (fNew > tmLn.curFrame);
- for (i = 0; i < tmLn.length; i++) {
- sprite = (jmpFwd)? tmLn[i] : tmLn[(tmLn.length-1)-i]; //count bkwds if jumping back
- if (sprite.charAt(0) == "s") {
- numKeyFr = sprite.keyFrames.length;
- firstKeyFr = sprite.keyFrames[0];
- lastKeyFr = sprite.keyFrames[numKeyFr - 1];
- if ((jmpFwd && fNew<firstKeyFr) || (!jmpFwd && lastKeyFr<fNew)) continue; //skip if untouchd
- for (keyFrm=1; keyFrm<numKeyFr && fNew>=sprite.keyFrames[keyFrm]; keyFrm++);
- for (j=0; j<sprite.values.length; j++) {
- props = sprite.values[j];
- if (numKeyFr == props.length) propNum = keyFrm-1 //keyframes only
- else propNum = Math.min(Math.max(0,fNew-firstKeyFr),props.length-1); //or keep in legal range
- if (sprite.obj != null) {
- if (props.prop2 == null) sprite.obj[props.prop] = props[propNum];
- else sprite.obj[props.prop2][props.prop] = props[propNum];
- } }
- } else if (sprite.charAt(0)=='b' && fNew == sprite.frame) eval(sprite.value);
- }
- tmLn.curFrame = fNew;
- if (tmLn.ID == 0) eval('MM_timelinePlay(tmLnName)');
- }
-
- function MM_findObj(n, d) { //v3.0
- var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
- d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
- if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
- for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document); return x;
- }
-
- function MM_initTimelines() {
- //MM_initTimelines() Copyright 1997 Macromedia, Inc. All rights reserved.
- var ns = navigator.appName == "Netscape";
- document.MM_Time = new Array(1);
- document.MM_Time[0] = new Array(2);
- document.MM_Time["Timeline1"] = document.MM_Time[0];
- document.MM_Time[0].MM_Name = "Timeline1";
- document.MM_Time[0].fps = 15;
- document.MM_Time[0][0] = new String("sprite");
- document.MM_Time[0][0].slot = 1;
- if (ns)
- document.MM_Time[0][0].obj = document["Layer7"];
- else
- document.MM_Time[0][0].obj = document.all ? document.all["Layer7"] : null;
- document.MM_Time[0][0].keyFrames = new Array(1, 4, 8, 15);
- document.MM_Time[0][0].values = new Array(5);
- document.MM_Time[0][0].values[0] = new Array(685,673,661,643,622,608,593,570,557,546,536,525,515,505,494);
- document.MM_Time[0][0].values[0].prop = "left";
- document.MM_Time[0][0].values[1] = new Array(5,77,146,201,201,188,174,177,199,224,253,285,317,350,382);
- document.MM_Time[0][0].values[1].prop = "top";
- if (!ns) {
- document.MM_Time[0][0].values[0].prop2 = "style";
- document.MM_Time[0][0].values[1].prop2 = "style";
- }
- document.MM_Time[0][0].values[2] = new Array(40,39,39,39,39,39,39,39,39,39,39,39,39,39,39);
- document.MM_Time[0][0].values[2].prop = "width";
- if (!ns)
- document.MM_Time[0][0].values[2].prop2 = "style";
- document.MM_Time[0][0].values[3] = new Array(39,40,41,43,43,43,43,43,42,41,40,39,38,37,36);
- document.MM_Time[0][0].values[3].prop = "height";
- if (!ns)
- document.MM_Time[0][0].values[3].prop2 = "style";
- document.MM_Time[0][0].values[4] = new Array("67","7","7","7");
- document.MM_Time[0][0].values[4].prop = "zIndex";
- if (!ns)
- document.MM_Time[0][0].values[4].prop2 = "style";
- document.MM_Time[0][1] = new String("behavior");
- document.MM_Time[0][1].frame = 16;
- document.MM_Time[0][1].value = "MM_timelineGoto('Timeline1','1')";
- document.MM_Time[0].lastFrame = 16;
- for (i=0; i<document.MM_Time.length; i++) {
- document.MM_Time[i].ID = null;
- document.MM_Time[i].curFrame = 0;
- document.MM_Time[i].delay = 1000/document.MM_Time[i].fps;
- }
- }
- //-->
- </script>
-
- </head>
- <bgsound id="BackgroundSound" type="audio/midi" src="../audio/Jazzy Little Number.mid" repeat="1" loop="-1">
- <body bgcolor="#38ADE1" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onLoad="MM_timelinePlay('Timeline1')">
- <div id="Layer1" style="position:absolute; left:0px; top:0px; width:728px; height:417px; z-index:1"><img src="../image/web_card3_bg.gif" class="Fixed01"></div>
- <div id="Layer2" style="position:absolute; left:254px; top:142px; width:261px; height:177px; z-index:2" class="ParentLayer">
- <a id="Link2" name="">
- <img src="../image/vit_3_6_4.JPG" width="260" height="173" name="uImage01;260;173;" class="ImageHolder">
- </a>
- </div>
- <div id="Layer3" style="position:absolute; left:573px; top:236px; width:180px; height:115px; z-index:3" class="Fixed01">
- <a id="Link3" name="">
- <img src="../image/gen01-mtv2.gif" width="179" height="136">
- </a>
- </div>
- <div id="Layer7" style="position:absolute; left:685px; top:5px; width:40px; height:39px; z-index:67">
- <a id="Link7" name="">
- <img src="../image/gen01-c1.gif" width="34" height="33" class="Fixed01">
- </a>
- </div>
- <div id="Layer12" style="position:absolute; left:498px; top:369px; width:28px; height:31px; z-index:11" class="Fixed01">
- <a id="Link12" name="">
- <img src="../image/c_whitegif.gif" width="25" height="25">
- </a>
- </div>
- <div id="Layer15" style="position:absolute; left:207px; top:218px; width:17px; height:24px; z-index:15">
- <a id="Link15" name="">
- <img src="../image/c_whitegif.gif" width="19" height="17" class="Fixed01">
- </a>
- </div>
-
- <div id="VideoBorder" class="ParentLayer" style="visibility:hidden; position:absolute; width:30px; height:30px; z-index:69; left: 0px; top: 0px; border-width:5px;">
- </div>
-
- <div id="VideoLayer" style="position:absolute; left:583px; top:245px; width:160px; height:120px; z-index:16" class="ParentLayer">
- <a id="Link16" name="">
- <img id="uVideo01" type="video/avi" dynsrc="../video/Look at Me!.avi" width="160" height="120" repeat="1" loop="-1" class="VideoHolder">
- </a>
- </div>
-
- <div id="Layer13" style="position:absolute; width:300px; height:21px; z-index:66; left: 26px; top: 365px">
- <div align="center" >
-
- </div>
- </div>
- <div id="Layer22" class="ParentLayer" style="position:absolute; width:747px; height:52px; z-index:65; left: 13px; top: 28px">
- <div align="center" >
- <a id="Link22" name="">
- <p id="uText01" class="TextHolder01">Fun Times
- </a>
- </div>
- </div>
- <div id="Layer4" style="position:absolute; left:67px; top:277px; width:27px; height:33px; z-index:68">
- <a id="Link4" name="">
- <img src="../image/c_white_move.gif" width="32" height="32" class="Moveable">
- </a>
- </div>
- <div id="Layer5" style="position:absolute; left:296px; top:364px; width:21px; height:21px; z-index:69">
- <a id="Link5" name="">
- <img src="../image/c_white_move.gif" width="20" height="20" class="Moveable">
- </a>
- </div>
- <div id="Layer6" style="position:absolute; left:341px; top:364px; width:30px; height:26px; z-index:70">
- <a id="Link6" name="">
- <img src="../image/c_white_move.gif" width="32" height="32" class="Moveable">
- </a>
- </div>
-
- <div id="Layer8" style="position:absolute; left:13px; top:130px; width:189px; height:123px; z-index:71" class="ParentLayer">
- <a id="Link8" name="">
- <p id="uText02" align="center" class="TextHolder02">Check out this awesome photo. And here's a cool video clip as well!</p>
- </a>
- </div>
- </body>
-
- <script language="JavaScript" src="../../WebCard.js">
- </script>
-
- </html>
-