$(document).ready(function() {
	  $("hide-all").ready(function() {
      $('#main-work-splash').hide();
   });


   	  $("#show-main-splash").click(function() {
      $('#big-work-splash').hide();
	  $('#small-work-splash').hide();
	  $('#ework-splash').hide();
	  $('#odd-work-splash').hide();
      $('#main-splash').fadeIn('slow');
   });
   
   $("#show-big-work-splash").click(function() {
      $('#main-splash').hide();
	  $('#small-work-splash').hide();
	  $('#ework-splash').hide();
	  $('#odd-work-splash').hide();
      $('#big-work-splash').fadeIn('slow');
   });
   
   $("#show-small-work-splash").click(function() {
      $('#main-splash').hide();
	  $('#big-work-splash').hide();
	  $('#ework-splash').hide();
	  $('#odd-work-splash').hide();
      $('#small-work-splash').fadeIn('slow');
   });
   
   $("#show-ework-splash").click(function() {
      $('#main-splash').hide();
	  $('#big-work-splash').hide();
	  $('#small-work-splash').hide();
	  $('#odd-work-splash').hide();
      $('#ework-splash').fadeIn('slow');
   });
   
   $("#show-odd-work-splash").click(function() {
      $('#main-splash').hide();
	  $('#big-work-splash').hide();
	  $('#small-work-splash').hide();
	  $('#ework-splash').hide();
      $('#odd-work-splash').fadeIn('slow');
   });
   
});