// JavaScript Document
// Set slideShowSpeed (milliseconds)
var slideShowSpeed1 = 8000
// Duration of crossfade (seconds)
var crossFadeDuration = 1
// Specify the image files
var Pic_2 = new Array() 
var Link_2 = new Array() 


Pic_2[0] = 'http://www.unclevinniescomedyclub.com/graphics/YouTube/slideshow/tv1.jpg'
Link_2[0] = 'http://www.youtube.com/user/MadMax038#p/a/u/1/9QHVyu2kACY'
Pic_2[1] = 'http://www.unclevinniescomedyclub.com/graphics/YouTube/slideshow/tv2.jpg'
Link_2[1] = 'http://www.youtube.com/watch?v=zP739ytw2pQ'
Pic_2[2] = 'http://www.unclevinniescomedyclub.com/graphics/YouTube/slideshow/tv3.jpg'
Link_2[2] = 'http://www.youtube.com/watch?v=DIhl_xvqN4k'
Pic_2[3] = 'http://www.unclevinniescomedyclub.com/graphics/YouTube/slideshow/tv4.jpg'
Link_2[3] = 'http://www.youtube.com/watch?v=EJ-v36AEbOk'
Pic_2[4] = 'http://www.unclevinniescomedyclub.com/graphics/YouTube/slideshow/tv5.jpg'
Link_2[4] = 'http://www.youtube.com/watch?v=fFL_JxUpss8'
Pic_2[5] = 'http://www.unclevinniescomedyclub.com/graphics/YouTube/slideshow/tv6.jpg'
Link_2[5] = 'http://www.youtube.com/watch?v=VCy64Y-kia4'
Pic_2[6] = 'http://www.unclevinniescomedyclub.com/graphics/YouTube/slideshow/tv8.jpg'
Link_2[6] = 'http://www.youtube.com/watch?v=RWMDsJ2-ftE'
Pic_2[7] = 'http://www.unclevinniescomedyclub.com/graphics/YouTube/slideshow/tv9.jpg'
Link_2[7] = 'http://www.youtube.com/watch?v=uZck0B-p2rY&feature=related'


var t2 
var j2 = 0
var p2 = Pic_2.length

var preLoad_2 = new Array()
for (i = 0; i < p2; i++){
   preLoad_2[i] = new Image()
   preLoad_2[i].src = Pic_2[i]
} 


function runSlideShow_2(){
    if (document.all){
      document.images.SlideShow_2.style.filter="blendTrans(duration=1)"
      document.images.SlideShow_2.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.SlideShow_2.filters.blendTrans.Apply()
      document.anchors('SlideLink_2').href = Link_2[j2];
   }
   else
      document.links.SlideLink_2.href = Link_2[j2]
   document.images.SlideShow_2.src = preLoad_2[j2].src

   if (document.all){
      document.images.SlideShow_2.filters.blendTrans.Play()
    }
   j2 = j2 + 1
   if (j2 > (p2-1)) j2=0
   t2 = setTimeout('runSlideShow_2()', slideShowSpeed1)
}
