$(function() {
   $('#gNav').droppy({speed: 100});
});

$(document).ready(function () {
  $('div#higuchiBlog .blogFeed').rssfeed('http://rssblog.ameba.jp/spahiguchi/rss20.xml', {
    limit: 4,
	header: false,
	titletag: 'h3',
	content: false
  });
});

$(function() {
  $('#gNav').droppy({speed: 100});
});

$(document).ready(function(){	
	$("#slider").easySlider({
		auto: false,
		continuous: true,
		nextId: "slider1next",
		prevId: "slider1prev"
	});
	$("#slider2").easySlider({ 
		numeric: true
	});
});

$(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;
   });
});
