$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
  $('#slickbox').hide();
 // shows the slickbox on clicking the noted link
  $('li.1').hover(function() {
 $('#hidden1').show('');
 return false;
  });
   $('li.2').hover(function() {
 $('#hidden2').show('');
 return false;
  });
    $('li.3').hover(function() {
 $('#hidden3').show('');
 return false;
  });
	 $('li.4').hover(function() {
 $('#hidden4').show('');
 return false;
  });
	   $('li.1-2').hover(function() {
 $('#hidden1-2').show('');
 return false;
  });
   $('li.2-2').hover(function() {
 $('#hidden2-2').show('');
 return false;
  });
    $('li.3-2').hover(function() {
 $('#hidden3-2').show('');
 return false;
  });
	 $('li.4-2').hover(function() {
 $('#hidden4-2').show('');
 return false;
  });
	   $('li.1-3').hover(function() {
 $('#hidden1-3').show('');
 return false;
  });
   $('li.2-3').hover(function() {
 $('#hidden2-3').show('');
 return false;
  });
    $('li.3-3').hover(function() {
 $('#hidden3-3').show('');
 return false;
  });
	 $('li.4-3').hover(function() {
 $('#hidden4-3').show('');
 return false;
  });
	  $('li.1-4').hover(function() {
 $('#hidden1-4').show('');
 return false;
  });
   $('li.2-4').hover(function() {
 $('#hidden2-4').show('');
 return false;
  });
    $('li.3-4').hover(function() {
 $('#hidden3-4').show('');
 return false;
  });
	 $('li.4-4').hover(function() {
 $('#hidden4-4').show('');
 return false;
  });
	  $('a.s1').click(function() {
 $('#photos_1').show('');
 return false;
  });
	  	  $('a.s2').click(function() {
 $('#photos_2').show('');
 return false;
  });
		  	  $('a.s3').click(function() {
 $('#photos_3').show('');
 return false;
  });
	  	  $('a.s4').click(function() {
 $('#photos_4').show('');
 return false;
  });
 // hides the slickbox on clicking the noted link
  $('li.1').hover(function() {
 $('#hidden2, #hidden3, #hidden4').hide('');
 return false;
  });
	$('li.2').hover(function() {
 $('#hidden1, #hidden3, #hidden4').hide('');
 return false;
  });
	$('li.3').hover(function() {
 $('#hidden1, #hidden2, #hidden4').hide('');
 return false;
  });
	$('li.4').hover(function() {
 $('#hidden1, #hidden3, #hidden2').hide('');
 return false;
  });
	  $('li.1-2').hover(function() {
 $('#hidden2-2, #hidden3-2, #hidden4-2').hide('');
 return false;
  });
	$('li.2-2').hover(function() {
 $('#hidden1-2, #hidden3-2, #hidden4-2').hide('');
 return false;
  });
	$('li.3-2').hover(function() {
 $('#hidden1-2, #hidden2-2, #hidden4-2').hide('');
 return false;
  });
	$('li.4-2').hover(function() {
 $('#hidden1-2, #hidden3-2, #hidden2-2').hide('');
 return false;
  });
	  $('li.1-3').hover(function() {
 $('#hidden2-3, #hidden3-3, #hidden4-3').hide('');
 return false;
  });
	$('li.2-3').hover(function() {
 $('#hidden1-3, #hidden3-3, #hidden4-3').hide('');
 return false;
  });
	$('li.3-3').hover(function() {
 $('#hidden1-3, #hidden2-3, #hidden4-3').hide('');
 return false;
  });
	$('li.4-3').hover(function() {
 $('#hidden1-3, #hidden3-3, #hidden2-3').hide('');
 return false;
  });
		  $('li.1-4').hover(function() {
 $('#hidden2-4, #hidden3-4, #hidden4-4').hide('');
 return false;
  });
	$('li.2-4').hover(function() {
 $('#hidden1-4, #hidden3-4, #hidden4-4').hide('');
 return false;
  });
	$('li.3-4').hover(function() {
 $('#hidden1-4, #hidden2-4, #hidden4-4').hide('');
 return false;
  });
	$('li.4-4').hover(function() {
 $('#hidden1-4, #hidden3-4, #hidden2-4').hide('');
 return false;
  });
		  $('a.s1').click(function() {
 $('#photos_2, #photos_3, #photos_4').hide('');
 return false;
  });
	  	  $('a.s2').click(function() {
 $('#photos_1, #photos_3, #photos_4').hide('');
 return false;
  });
		  	  $('a.s3').click(function() {
 $('#photos_2, #photos_1, #photos_4').hide('');
 return false;
  });
  		  	  $('a.s4').click(function() {
 $('#photos_2, #photos_1, #photos_3').hide('');
 return false;
  });
});