  $(document).ready(function() {
  
       // hides the slickbox as soon as the DOM is ready
        $('#videobox2').hide();
        $('#videobox').hide();
 		$('#main-image').show();
       // shows the slickbox on clicking the noted link  
  
        $('#slick-show').click(function() {
   
          	$('#videobox').show();
  			$('#main-image').hide();
			$('#videobox2').hide();
          return false;
 
        });
		
  		$('#slick-show2').click(function() {
										 
   			$('#videobox2').show();
          	$('#videobox').hide();
  			$('#main-image').hide();
          return false;
 
        });
       // hides the slickbox on clicking the noted link  

        $('#slick-hide').click(function() {

          $('#videobox').hide();
 			$('#main-image').show();
          return false;

        });
 
       
  
       // toggles the slickbox on clicking the noted link  
  
        $('#slick-toggle').click(function() {
  
          $('#videobox').toggle();
		$('#main-image').toggle();
          return false;

        });
 
   
 
 
 
  });

