$(function() {
$('a').click(function() {
var jumpTo = $(this).attr('href');
if(jumpTo == '#siteId') {
$(document.body).ScrollTo(1000, 'easein'); return false;
}
else if(jumpTo.charAt(0) == '#') {
$(jumpTo).ScrollTo(1000, 'easein'); return false;
}
});
});


//ポップアップウィンドウ
function MM_openBrWindow(theURL,winName,features) { 
  window.open(theURL,winName,features);
}

