/*!
* Smooth Scrolling jQuery Plugin v1.2
* @link http://github.com/mathiasbynens/Smooth-Scrolling-jQuery-Plugin
* @author Mathias Bynens <http://mathiasbynens.be/>
*/
(function(a){a.fn.smoothScroll=function(c){var b={speed:400};if(c){a.extend(b,c)}this.find('a[href*=#]').click(function(f){var d=a.browser.opera?a('html'):a('html, body');f.preventDefault();if(location.pathname.replace(/^\//,'')===this.pathname.replace(/^\//,'')&&location.hostname===this.hostname){var e=a(this.hash);if(e.length){d.animate({scrollTop:e.offset().top},b.speed,function(){location.hash=e.attr('id')})}}});return this}})(jQuery);
