/**
 * @author jmagner
 */
$(document).ready(function(){
	$('.recipe-cards .recipe-tabs a').click(function(e){
		e.preventDefault();
		$('.recipe-cards').hide();
		$('#'+$(this).attr("class")).show();
	});
		
});

