

//ページのTOPにスクロール

$(document).ready(function(){
  $('a[href*=#]').click(function() {
 if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
 && location.hostname == this.hostname) {
   var $target = $(this.hash);
   $target = $target.length && $target
   || $('[name=' + this.hash.slice(1) +']');
   if ($target.length) {
  var targetOffset = $target.offset().top;
  $('html,body')
  .animate({scrollTop: targetOffset}, 300, 'easeOutSine');
    return false;
   }
 }
  });
  
});


$(function(){
		$('#pane1').jScrollPane({showArrows:true, scrollbarWidth: 10});
		$('#pane2').jScrollPane({showArrows:true, scrollbarWidth: 10});
});



function bus()
{
 sub = window.open("bus.php","window1","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=410,height=420");
	sub.moveTo(10,10);
}

function bus2()
{
 sub = window.open("bus2.php","window1","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=410,height=420");
	sub.moveTo(10,10);
}


