/*
 */

//jQuery Toggle Functions
$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
  $('#vidBox1').hide();
 // shows the slickbox on clicking the noted link
  $('a#slick-show1').click(function() {
        $('#vidBox1').show('slow');
        return false;
  });
 // hides the slickbox on clicking the noted link
  $('a#slick-hide1').click(function() {
        $('#vidBox1').hide('fast');
        return false;
  });
  
  // two
   // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
  $('#vidBox2').hide();
 // shows the slickbox on clicking the noted link
  $('a#slick-show2').click(function() {
        $('#vidBox2').show('slow');
        return false;
  });
 // hides the slickbox on clicking the noted link
  $('a#slick-hide2').click(function() {
        $('#vidBox2').hide('fast');
        return false;
  });
  
  //three
   // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
  $('#vidBox3').hide();
 // shows the slickbox on clicking the noted link
  $('a#slick-show3').click(function() {
        $('#vidBox3').show('slow');
        return false;
  });
 // hides the slickbox on clicking the noted link
  $('a#slick-hide3').click(function() {
        $('#vidBox3').hide('fast');
        return false;
  });
  
  //four
   // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
  $('#vidBox4').hide();
 // shows the slickbox on clicking the noted link
  $('a#slick-show4').click(function() {
        $('#vidBox4').show('slow');
        return false;
  });
 // hides the slickbox on clicking the noted link
  $('a#slick-hide4').click(function() {
        $('#vidBox4').hide('fast');
        return false;
  });
  
 
});

