$(document).ready(function() {
						   
	//ページ内リンクはするするスクロール
    $('a.scroll-to').click(function(e){
        var anchor = $(this).attr('href').substr(1);
        $.scrollTo("[id='" + anchor + "'],[name='" + anchor + "']", 500);
        e.preventDefault();
    });
    $('area.scroll-to').click(function(e){
        var anchor = $(this).attr('href').substr(1);
        $.scrollTo("[id='" + anchor + "'],[name='" + anchor + "']", 500);
        e.preventDefault();
    });
});
