$(document).ready(function(){
	
	// Show recipe instructions
	$('div.recipe a.btn_view').click(function(e){
		e.preventDefault();
		var $parent = $(this).closest('.recipe');
		$parent.find('.instructions').slideDown();
		$(this).fadeOut();
	});
	
	// Close recipe instructions
	$('div.recipe a.btn_close').click(function(e){
		e.preventDefault();
		var $parent = $(this).closest('.recipe');
		$parent.find('.instructions').slideUp();
		$parent.find('a.btn_view').fadeIn();
	});
	
	$('#countdown li').prepend('<span class="number"></span>');
	$('#countdown li a').each(function(){
		$(this).parent().find('span.number').addClass('active');
	});
	
	//	Add _blank target for external links
	$("a[href^='http']").attr('target','_blank');
	$('a.btn_print').attr('target','_blank');
	
});
