/****************************************
[jquery] jquery.localscroll.js
*****************************************
* http://www.kouzu.info/?page_id=54
*****************************************
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
****************************************/

jQuery.fn.extend({
scrollTo:function(speed, easing){
if(!$(this)[0].hash || $(this)[0].hash == "#") {return false;}
return this.each(function(){var targetOffset = $($(this)[0].hash).offset().top;
$('html,body').animate({scrollTop: targetOffset}, speed, easing);});}
});

$(document).ready(function(){
$('a[href^=#],a[href^=index#]').click(function(){
$(this).scrollTo(300);
return false;
});
});
