//$(function(){
//	//右クリック禁止
//	$(document).ready(function(){
//	  $(document).bind("contextmenu",function(e){
//	    return false;
//	  });
//	});
//
//});

$(function(){

/**
* スムーズスクロール
*  a.anchorをクリックした場合
***/
  $('a.anchor').click(function(){
    var speed = 500; //ms
    var href= $(this).attr("href");
    var target = $(href == "#" || href == "" ? 'html' : href);
    var pos = target.offset().top;
    $('html, body').animate({scrollTop:pos}, speed, 'swing');
    return false;
  });


});
