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