//===========================================
//ページ内リンクスムーススクロール
//===========================================
$(function() {
var url = "http://" + location.hostname + location.pathname; 
$('a[@href*="#"]').click(function() { 
var id = this.href.substring(this.href.indexOf('#'),this.href.length); 
var hrefUrl = this.href.split(id); 
if(hrefUrl[0] == url) { 
if(id == '#header') { 
$('body').addClass('body'); 
$('.body').ScrollTo('slow'); 
$('body').removeClass(); 
return false; 
}else{ 
$(id).ScrollTo('slow'); 
return false; 
} 
} 
});
});

//===========================================
//ポニョ＆チョコ＆チェロのプロフィール画像切り替え http://semooh.jp/jglycy/jquery-plugins/cycle
//===========================================
$(function() {
$('#prof').cycle({ 
    fx:   'shuffle', 
    shuffle: { 
        top:  -100, 
        left:  10 
    }, 
    timeout: '8000',
    speed: '500',
    easing: 'backinout', 
    delay: -4000 
});
$('#pauseButton').click(function() { 
    $('#prof').cycle('pause'); 
});

$('#resumeButton').click(function() { 
    $('#prof').cycle('resume'); 
});
});
//===========================================
//ポニョ＆チョコ＆チェロのインフォメーション
//===========================================
$(document).ready(
function(){ 
$('#news1').innerfade ({
animationtype: 'slide', // アニメーションの種類（slide or fade：デフォルト）
speed: 750, // フェイドスピード（ミリ秒 or slow,normal：デフォルト,fast）
timeout: 5000, // フェイドにかかる時間（ミリ秒、2000：デフォルト）
type: 'random', // スライドショーの種類（sequence：デフォルト or random）
containerheight: 'auto' //囲んだ要素の高さ、auto：デフォルト
});
} );

//ポニョ＆チョコ＆チェロの新着記事情報
$(document).ready(
function(){ 
$('#news2').innerfade ({
animationtype: 'slide', // アニメーションの種類（slide or fade：デフォルト）
speed: 750, // フェイドスピード（ミリ秒 or slow,normal：デフォルト,fast）
timeout: 8000, // フェイドにかかる時間（ミリ秒、2000：デフォルト）
type: 'sequence', // スライドショーの種類（sequence：デフォルト or random）
containerheight: 'auto' //囲んだ要素の高さ、auto：デフォルト
});
} );



