/* -----------------------------------------
 jquery.scroller.mtc.js
 v1.0
------------------------------------------*/
( function ($) {
	$.fn.scRoller = function () {
		return this.each( function () {
			if (!$(this).attr('href').replace('#','').length) return;
			$(this).click( function () {
				var h = $(this).attr('href').replace('#',''), e = $( '#' + h + ',[name="' + h + '"]' );
				if (e.length) {
					e = e.offset().top;
				} else {
					e = 0;
				}
				$('html,body').animate( { scrollTop: e } );
				location.hash = h;
				return false;
			} );
		} );
	};
	$( function () { $('a[href^=#]').scRoller(); } );
} )(jQuery);

