//==============================================================================
//Effect
//==============================================================================

window.onload = function() {
	var effectImage = new Spry.Effect.Fade('visual', {duration:1000, from:'0%', to:'100%'});
	effectImage.start();
}




//==============================================================================
//Smooth Scroll for jQuery add 2011.09.01
//==============================================================================

$(function(){
   // #で始まるアンカーをクリックした場合に処理
   $('a[href^=#]').click(function() {
      // スクロールの速度
      var speed = 400;// ミリ秒
      // アンカーの値取得
      var href= $(this).attr("href");
      // 移動先を取得
      var target = $(href == "#" || href == "" ? 'html' : href);
      // 移動先を数値で取得
      var position = target.offset().top;
      // スムーススクロール
      $($.browser.safari ? 'body' : 'html').animate({scrollTop:position}, speed, 'swing');
      return false;
   });
});

//==============================================================================
// MouseOver for jQuery
//==============================================================================



$(document).ready(
  function(){
    $("#wrap a img").hover(function(){
       $(this).fadeTo("slow", 0.6);
    },function(){
       $(this).fadeTo("slow", 1.0);
    });
  });

$(document).ready(
  function(){
    $("#footer a img").hover(function(){
       $(this).fadeTo("slow", 0.6);
    },function(){
       $(this).fadeTo("slow", 1.0);
    });
  });

// EOF

