// SLICK Buttoon 1
$(document).ready(function() {
// hides the slickbox as soon as the DOM is ready (a little sooner than page load)

// HIDE ON LOAD 
$('.sl-ph').hide(); // photography projects menu
$('.sl-mu').hide(); // music player
$('.sl-ct').hide(); // contact
$('.sl-to').hide(); // hide thumbs button
// home page images
$('.sl-b').hide(); // cam portraits
$('.sl-c').hide();
$('.sl-d').hide();
$('.sl-e').hide();
$('.sl-f').hide();
$('.sl-g').hide(); // wrecked
$('.sl-h').hide(); // various
$('.sl-i').hide(); // music
$('.sl-j').hide(); // contact
// slideshows
$('.sl-ga').hide(); // gallerys container "page" and "countainer" (if this is not used, show/hide will be visible on page load)
$('.sl-xw').hide(); // wrecked
$('.sl-xc').hide(); // cam portraits 
$('.sl-xg').hide(); // gilbert road
$('.sl-x1').hide(); // series 1
$('.sl-x2').hide(); // series 2
$('.sl-xt').hide(); // terminus
$('.sl-xv').hide(); // various
   
 // SLICK HIDE
$('.sh-im').click(function() {
$('.sl-im').hide(10);
 	return false;
	});
$('.sh-mu').click(function() {
$('.sl-mu').hide(10);
	return false;
	});
$('.sh-ph').click(function() {
$('.sl-ph').hide(10);
	return false;
	});
$('.sh-ct').click(function() {
$('.sl-ct').hide(10);
	return false;
	});
$('.sh-to').click(function() { // "thumbs" hide  
$('.sl-to').hide(10);
	return false;
	});
$('.sh-tx').click(function() { // "hide" hide 
$('.sl-tx').hide(10);
	return false;
	});
// project menu images on hover
$('.sh-a').hover(function() {
$('.sl-a').hide(10);
	return false;
  	});	  
$('.sh-b').hover(function() {
$('.sl-b').hide(10);
	return false;
  	});	
$('.sh-c').hover(function() {
$('.sl-c').hide(10);
	return false;
  	});	 
$('.sh-d').hover(function() {
$('.sl-d').hide(10);
	return false;
  	});	
$('.sh-e').hover(function() {
$('.sl-e').hide(10);
	return false;
  	});	
$('.sh-f').hover(function() {
$('.sl-f').hide(10);
	return false;
  	});	
$('.sh-g').hover(function() {
$('.sl-g').hide(10);
	return false;
  	});	
$('.sh-h').hover(function() {
$('.sl-h').hide(10);
	return false;
  	});	
$('.sh-i').hover(function() {
$('.sl-i').hide(10);
	return false;
  	});	
$('.sh-j').hover(function() {
$('.sl-j').hide(10);
	return false;
  	});	
// slideshow pages
$('.sh-ga').click(function() {
$('.sl-ga').hide(10);
	return false;
	});
$('.sh-xw').click(function() {
$('.sl-xw').hide(10);
	return false;
  	});	
$('.sh-xc').click(function() {
$('.sl-xc').hide(10);
	return false;
	});
$('.sh-xg').click(function() {
$('.sl-xg').hide(10);
	return false;
	});
$('.sh-x1').click(function() {
$('.sl-x1').hide(10);
	return false;
	});
$('.sh-x2').click(function() {
$('.sl-x2').hide(10);
	return false;
	});
$('.sh-xt').click(function() {
$('.sl-xt').hide(10);
	return false;
	});
$('.sh-xv').click(function() {
$('.sl-xv').hide(10);
	return false;
	});
// SLICK SHOW
$('.ss-im').click(function() {
$('.sl-im').show(10);
	return false;
	});
$('.ss-ph').click(function() {
$('.sl-ph').show(10);
	return false;
	});	 
$('.ss-mu').click(function() {
$('.sl-mu').show(10);
	return false;
	});	  
$('.ss-ct').click(function() {
$('.sl-ct').show(10);
	return false;
	});	 
$('.ss-tx').click(function() {
$('.sl-tx').show(10);
	return false;
	});	 
$('.ss-to').click(function() {
$('.sl-to').show(10);
	return false;
	});
// project menu images on hover
$('.ss-a').hover(function() {
$('.sl-a').show(10);
	return false;
  	});	
$('.ss-b').hover(function() {
$('.sl-b').show(10);
	return false;
  	});	
$('.ss-c').hover(function() {
$('.sl-c').show(10);
	return false;
  	});	 
$('.ss-d').hover(function() {
$('.sl-d').show(10);
	return false;
  	});	
$('.ss-e').hover(function() {
$('.sl-e').show(10);
	return false;
  	});	
$('.ss-f').hover(function() {
$('.sl-f').show(10);
	return false;
  	});	
$('.ss-g').hover(function() {
$('.sl-g').show(10);
	return false;
  	});	
$('.ss-h').hover(function() {
$('.sl-h').show(10);
	return false;
  	});
$('.ss-i').hover(function() {
$('.sl-i').show(10);
	return false;
  	});	
$('.ss-j').hover(function() {
$('.sl-j').show(10);
	return false;
  	});	
	
// slideshow pages
$('.ss-ga').click(function() {
$('.sl-ga').show(10);
	return false;
  	});	
$('.ss-xw').click(function() {
$('.sl-xw').show(1000);
	return false;
  	});	 
$('.ss-xc').click(function() {
$('.sl-xc').show(1000);
	return false;
	});	 
$('.ss-xg').click(function() {
$('.sl-xg').show(1000);
	return false;
	});	  	
$('.ss-x1').click(function() {
$('.sl-x1').show(1000);
	return false;
	});	  	 
$('.ss-x2').click(function() {
$('.sl-x2').show(1000);
	return false;
	});	
$('.ss-xt').click(function() {
$('.sl-xt').show(1000);
	return false;
	});	
$('.ss-xv').click(function() {
$('.sl-xv').show(1000);
	return false;
	});	
});

// ## I'm not sure if this fade in is needed here?
$(document.body).ready(function () {
      $(".imgs").fadeIn("slow");
    });
