// JavaScript Document
$(document).ready(function() {

  $('#about-content').hide();
  $('#recipes-content').hide();  

// toggles the slickbox on clicking the noted link  

  $('a#home').click(function() {
  
   $('#about-content').hide();
   $('#recipes-content').hide();   

    $('#home-content').fadeIn(1200);
	    // window.location = $(this).href("url");	

    return false;

  });
  
  
    $('a#about-our-strawberry-farm').click(function() {
	    $('#home-content').hide();
	    $('#recipes-content').hide();		
    $('#about-content').fadeIn(1200);
	    // window.location = $(this).href("url");	
    return false;

  });
  
      $('a#recipes').click(function() {
	    $('#home-content').hide();
	    $('#about-content').hide();		
    $('#recipes-content').fadeIn(1200);
	    // window.location = $(this).href("url");	
    return false;

  });
  
  
});  
