
var sliderwidth=192;
var sliderheight=240;
var slidespeed=8;
var timerDelay=20;
slidebgcolor="#ffffff";
var animatetime;
var topRow='';
var bottomRow='';
var copyspeed=slidespeed;
var actualwidth='';
var actualheight='';
var cross_slide, ns_slide;
function jNull(){}
function stopanimation(){
window.clearInterval(animatetime);
}
function fillup(){
cross_slide=document.getElementById? document.getElementById("slidingGallery") : document.all.slidingGallery;
cross_slide.innerHTML=verticalslider;
actualheight=document.all? cross_slide.offsetHeight : document.getElementById("temp").offsetHeight;
if (actualheight==0) actualheight=5000;
}
function startslideup(){
if (cross_slide){
stopanimation();
animatetime=setInterval("slideup()",timerDelay)
}
}
function startslidedown(){
if (cross_slide){
stopanimation();
animatetime=setInterval("slidedown()",timerDelay)
}
}
function slideup(){
if (parseInt(cross_slide.style.top)>(-actualheight+sliderheight)){
cross_slide.style.top=parseInt(cross_slide.style.top)-copyspeed+"px"
}else stopanimation();
}
function slidedown(){
if (parseInt(cross_slide.style.top)<0){
cross_slide.style.top=parseInt(cross_slide.style.top)+copyspeed+"px"
}else stopanimation();
}

htmlCode='<table><tr><td align=center><a target="movie" href="flash/ths.html"><img src="images/movie_0009.jpg" border=0 width=195 height=64 ></a><br><a target="movie" href="flash/ET.html"><img src="images/movie_02.jpg" border=0 width=195 height=64 ></a><br><a target="movie" href="flash/gmt_flash.html"><img src="images/movie_03.jpg" border=0 width=195 height=63></a><br><a target="movie" href="flash/brithny.html"><img src="images/movie_04.jpg" border=0 width=195 height=63></a><br><a target="movie" href="flash/part1.html"><img src="images/movie_05.jpg" border=0 width=195 height=64></a><br><a target="movie" href="flash/part2.html"><img src="images/movie_06.jpg" border=0 width=195 height=64></a><br><a target="movie" href="flash/part3.html"><img src="images/movie_07.jpg" border=0 width=195 height=63></a><br><a target="movie" href="flash/part4.html"><img src="images/movie_08.jpg" border=0 width=195 height=64></a></td></tr></table>';
verticalslider=htmlCode;
document.write('<span id="temp" style="visibility:hidden; position:absolute;top:-10000px;left:-10000px;">'+ htmlCode +'</span>');
with (document){
write('<table border="0" cellspacing="0" cellpadding="0"><tr>');
write('<td height="1" width="195" bgcolor="#ffffff" onmouseover="startslideup();" onmouseout="stopanimation();"><center><img src="./images/arrow_button1.jpg" width=195 height=19></center></td></tr>');
write('</table>');
write('<table border="0" cellspacing="0" cellpadding="0"><tr >');
write('<td width="120" bgcolor="#ffffff" height=' + sliderheight + '>');
write('<div id="divwrap" style="position:relative;height:'+ sliderheight +'px;width:'+sliderwidth+'px;overflow:hidden;background-color:'+slidebgcolor+';border-top:1px solid #ffffff;border-bottom:1px solid #ffffff;border-right:1px solid #ffffff;border-left:1px solid #ffffff;" onMouseover="stopanimation()">');
write('<div id="slidingGallery" style="horizontal-align: middle;position:absolute;left:0px;top:0px"></div>');
write('</div>');
write('</td></tr>');
write('</table>');
write('<table border="0" cellspacing="0" cellpadding="0"><tr>');
write('<td height="24" width="120" bgcolor="#ffffff" onmouseover="startslidedown();" onmouseout="stopanimation();"><center><img src="images/arrow_button2.jpg" width=195 height=22></center></td></tr>');
write('</table>');
}
window.onload=fillup;