//ページスクロール時のバウンドアクション//
jQuery.easing.quart = function (x, t, b, c, d) {
    return -c * ((t=t/d-1)*t*t*t - 1) + b;
}
//ページ上部に戻るアクション//
$(function () {
    $('.scroll').click(function () {
        $('html,body').animate({ scrollTop: 0 }, 300, 'quart');
    });
});

//ポップアップ設定
$(document).ready(function(){
	$("a[rel^='prettyPhoto']").prettyPhoto({theme:'light_rounded'});
});


//レシピリストの高さ合わせ設定
$(document).ready(function(){
	$("#layout-recipe-contents dl").fixHeight();
});

//レシピのh6スタイル書き換え
$(document).ready(function(){
  // h6の1行目にのみクラスを指定
  $('#layout-recipe-contents h6:eq(0)').addClass('recipe-ninzuu');
  // h6の1行目以外クラスを指定
  $('#layout-recipe-contents h6:gt(0)').addClass('recipe-header');
});
