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

  $('.SA').hide();  // about
  $('.SC').hide();	// contact
  $('.SP').hide();	// products
  $('.SO').hide(); 	// ordering
  $('.SI').hide(); 	// header img
  $('.SF').hide(); 	// ?
  $('.PR').hide(); 	// press
  
 // HIDE
 $('.hideSP').click(function() {
 $('.SP').hide(500);
 return false;
  });

 $('.hideA').click(function() {
 $('.SA').hide(500);
 return false;
  });

 $('.hideH').click(function() {
 $('.SH').hide(500);
 return false;
  });
  
 $('.hideC').click(function() {
 $('.SC').hide(500);
 return false;
  });
  
 $('.hideSO').click(function() {
 $('.SO').hide(500);
 return false;
 });
 
 $('.hideSGall').click(function() {
 $('.SGall').hide(500);
 return false;
 });

 $('.hideSI').click(function() {
 $('.SI').hide(500);
 return false;
 });
 
 $('.hideSF').click(function() {
 $('.SF').hide(500);
 return false;
 });
 
 $('.hidePR').click(function() {
 $('.PR').hide(500);
 return false;
 });
    
// SHOW 	 
 
$('.showSP').click(function() {
$('.SP').show(800);
return false;
});

$('.showA').click(function() {
$('.SA').show(800);
return false;
});	

$('.showH').click(function() {
$('.SH').show(800);
return false;
});	
  
$('.showC').click(function() {
$('.SC').show(800);
return false;
});	
  
$('.showSO').click(function() {
$('.SO').show(800);
return false;
});	

$('.showSI').click(function() {
$('.SI').show(800);
return false;
});

$('.showSF').click(function() {
$('.SF').show(800);
return false;
});

$('.showPR').click(function() {
$('.PR').show(800);
return false;
});
 
});
// END SLICK MENU



