<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_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_showHideLayers() { //v3.0
var i,p,v,obj,args=MM_showHideLayers.arguments;
for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args[i]))!=null) { v=args[i+2];
if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v='hide')?'hidden':v; }
obj.visibility=v; }
}
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_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
function MM_swapImgRestore() { //v3.0
var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}
function MM_swapImage() { //v3.0
var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
function MM_goToURL() { //v3.0
var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}
function MM_timelineStop(tmLnName) { //v1.2
//Copyright 1997 Macromedia, Inc. All rights reserved.
if (document.MM_Time == null) MM_initTimelines(); //if *very* 1st time
if (tmLnName == null) //stop all
for (var i=0; i<document.MM_Time.length; i++) document.MM_Time[i].ID = null;
else document.MM_Time[tmLnName].ID = null; //stop one
}
//-->
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(3);
document.MM_Time["Timeline1"] = document.MM_Time[0];
document.MM_Time[0].MM_Name = "Timeline1";
document.MM_Time[0].fps = 40;
document.MM_Time[0][0] = new String("behavior");
document.MM_Time[0][0].frame = 25;
document.MM_Time[0][0].value = "MM_showHideLayers('Layer2','','show')";
document.MM_Time[0][1] = new String("sprite");
document.MM_Time[0][1].slot = 1;
if (ns)
document.MM_Time[0][1].obj = document["Layer2"];
else
document.MM_Time[0][1].obj = document.all ? document.all["Layer2"] : null;
document.MM_Time[0][1].keyFrames = new Array(25, 38, 53, 80, 99, 112, 113, 114, 115, 117, 119, 122, 125, 127, 128, 150, 151, 153, 155, 156, 158, 164, 169, 176, 188, 189, 190, 198, 202, 209, 211, 213, 216, 217, 218, 219, 220, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 267, 274, 279);
document.MM_Time[0][1].values = new Array(4);
document.MM_Time[0][1].values[0] = new Array(427,430,433,436,439,442,444,447,450,452,454,456,458,459,460,460,460,460,460,459,459,458,457,456,456,455,454,454,454,454,455,455,456,456,457,458,459,460,461,462,463,464,465,466,467,468,470,471,472,473,474,475,474,471,468,465,458,450,442,433,425,416,407,398,388,378,368,358,348,339,330,321,312,304,295,283,272,262,252,242,233,225,217,209,203,196,190,185,177,169,161,155,149,143,137,132,127,121,115,108,103,100,97,89,89,89,89,89,89,89,89,89,89,89,89,89,89,90,90,90,90,90,90,91,91,91,97,100,103,112,121,127,126,131,137,144,152,161,170,179,187,195,202,210,219,226,234,242,251,260,270,281,289,298,306,315,325,334,343,351,358,365,371,377,379,381,384,388,392,396,401,406,410,413,416,417,417,417,417,416,416,415,414,413,412,408,400,388,376,368,360,354,346,340,338,332,327,322,317,312,306,300,294,288,281,274,267,259,251,243,236,229,222,216,210,204,199,193,188,184,179,178,178,177,177,177,176,176,176,178,186,193,200,208,217,226,237,248,259,269,279,289,298,308,319,329,338,349,357,350,320,281,236,188,140);
document.MM_Time[0][1].values[0].prop = "left";
document.MM_Time[0][1].values[1] = new Array(-112,-73,-33,6,45,84,124,162,198,232,264,294,322,349,367,382,396,407,418,427,436,445,453,461,469,477,484,491,498,501,504,507,510,513,515,518,520,522,524,527,529,530,532,534,536,538,540,542,545,547,550,553,556,558,559,560,560,560,559,558,556,554,552,550,548,545,543,540,538,535,533,531,529,527,526,524,523,522,521,520,520,519,519,518,518,518,517,517,515,509,499,494,489,484,477,470,463,455,448,441,435,430,425,413,406,399,392,384,376,367,358,348,338,327,316,305,294,284,274,265,256,248,240,233,226,219,211,207,203,196,189,183,178,171,167,162,157,152,148,144,142,140,140,140,140,140,140,139,140,140,143,146,149,154,158,163,168,174,179,184,188,193,196,200,208,218,224,230,237,245,254,263,270,278,288,296,305,314,322,330,339,348,356,364,370,380,384,387,388,389,389,390,391,391,392,392,387,381,376,370,363,357,350,343,335,327,319,310,301,293,284,276,269,262,255,248,242,236,230,224,219,213,205,199,197,195,192,188,183,175,156,152,147,143,138,133,127,121,115,110,104,99,93,88,85,83,81,78,69,53,23,-8,-43,-79,-115);
document.MM_Time[0][1].values[1].prop = "top";
if (!ns) {
document.MM_Time[0][1].values[0].prop2 = "style";
document.MM_Time[0][1].values[1].prop2 = "style";
}
document.MM_Time[0][1].values[2] = new Array(61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,62,63,64,65,66,65,64,63,63,62,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61);
document.MM_Time[0][1].values[2].prop = "width";
if (!ns)
document.MM_Time[0][1].values[2].prop2 = "style";
document.MM_Time[0][1].values[3] = new Array(66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,61,57,53,49,45,48,51,54,57,60,63,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66);
document.MM_Time[0][1].values[3].prop = "height";
if (!ns)
document.MM_Time[0][1].values[3].prop2 = "style";
document.MM_Time[0][2] = new String("behavior");
document.MM_Time[0][2].frame = 280;
document.MM_Time[0][2].value = "MM_timelineGoto('Timeline1','1')";
document.MM_Time[0].lastFrame = 280;
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>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"
onLoad="MM_timelinePlay('Timeline1');MM_preloadImages('http://ec2.images-amazon.com/images/P/B000JLTRVI.01._AA240_SCLZZZZZZZ_V38123086_.jpg')"
bgcolor="#000000" text="#FFFFFF">
<div id="Layer2"
style="position:absolute; left:427px; top:-132px; width:61px; height:66px; z-index:1"><a
href="http://www.amazon.com/dp/B000JLTRVI?tag=kissnews-20&camp=14573&creative=327641&linkCode=as1&creativeASIN=B000JLTRVI&adid=0VX4DGFR2CMZYAY68BMV&"
onMouseOut="MM_swapImgRestore();MM_timelinePlay('Timeline1')"
onMouseOver="MM_swapImage('tee-shirt','','http://ec2.images-amazon.com/images/P/B000JLTRVI.01._AA240_SCLZZZZZZZ_V38123086_.jpg',1);MM_timelineStop('Timeline1')"
onClick="MM_goToURL;('http://www.amazon.com/dp/B000JLTRVI?tag=kissnews-20&camp=14573&creative=327641&linkCode=as1&creativeASIN=B000JLTRVI&adid=0VX4DGFR2CMZYAY68BMV&');return document.MM_returnValue">
<dd><img
src="http://ec2.images-amazon.com/images/P/B000JLTRVI.01._AA240_SCLZZZZZZZ_V38123086_.jpg"
name="Gene DVD" border="0"></a></dd>