			$(document).ready(function(){ 
 				// hides the slickbox as soon as the DOM is ready
		 		// (a little sooner than page load)
  				$('.list').hide();
 				// shows the slickbox on clicking the noted link
	  			$('#nav a#fashion').click(function() {
  				$('.list').hide();
 				$('.fashion').show();
 				$('.video').hide();
 				$('#header').hide();
 				$('#show-video').show();
	 			$('#hide-video').hide();
					return false;
				});
	  			$('#nav a#commercial').click(function() {
  				$('.list').hide();
 				$('.commercial').show();
 				$('.video').hide();
 				$('#header').hide();
 				$('#show-video').show();
	 			$('#hide-video').hide();
					return false;
				});
				$('#nav a#personal').click(function() {
  				$('.list').hide();
 				$('.personal').show();
 				$('.video').hide();
 				$('#header').hide();
 				$('#show-video').show();
	 			$('#hide-video').hide();
					return false;
				});
				$('.hide a').click(function() {
 					$('.list').hide();
					$('#header').show();
					return false;
				});
				$('.video').hide();
				$('#hide-video').hide();
 				// shows the slickbox on clicking the noted link
	  			$('a#show-video').click(function() {
 					$('.video').show();
					$('#header').hide();
	 				$('#show-video').hide();
	 				$('#hide-video').show();
					return false;
				});
				$('a#hide-video').click(function() {
 					$('.video').hide();
					$('#header').show();
 					$('#show-video').show();
	 				$('#hide-video').hide();
					return false;
				});
				$('.hide-video a').click(function() {
 					$('.video').hide();
					$('#header').hide();
 					$('#show-video').show();
	 				$('#hide-video').hide();
					return false;
				});

		    }); 
