$(document).ready(function() {
    
	// Initially hide all but first recipe
	$('.recipe').not('#recipe-1').hide();
	
  // Content area scrolling
	$('.scroll').jScrollPane({ verticalDragMinHeight: 17, verticalDragMaxHeight: 17, hideFocus: true, maintainPosition: false});
	
	// Make the huge background image load a little nicer
	// by hiding initially, then fade up once fully loaded
	$('#hero-image').hide();
	$('<img />')
		.attr('src', $('#hero-image').css('background-image').replace(/"/g,"").replace(/url\(|\)$/ig, ""))
		.load(function(){
			$('#hero-image').fadeIn(200);
		});
	
	// Show/hide recipes
	$('.sidebar-nav a').click(function(){
		
		var target = $(this).attr('href');
		
		$('.recipe').hide();
		$(target).slideDown(400, function(){
			$('.scroll').data('jsp').reinitialise();
		});
		
		
		return false;
		
	});
	
});
