(function($){
	$.fn.autoscroll = function(){
		return this.each(function(){
		
			var $this = $(this),
				$body = $('body'),
				$scroll = ($.browser.mozilla||$.browser.msie) ? $('html') : $body,
				anchor = $this.attr('href'),
				$section = $(anchor);
			
			if($section.length > 0){
				$this.click(function(event){
					event.preventDefault();
					$scroll.animate({scrollTop: $section.offset().top}, 1000, "swing", function(){
						window.location.hash = anchor;
					});
				});
			}
		
		
		});
	};
})(jQuery);

jQuery(function($){
	$('#secondNav a').autoscroll();
});

$(document).ready(function(){
	$("#scrollPage").hide();
});
