(function($) {

	$(function() {
		$.rdojo.Pagetop();
	});

	//---------------------------------------------------------------------
	$.rdojo = {
		
		Pagetop: function(){ 
			$('a[href^=#]').click(function () {
				$(this).blur();
				var href = $(this).attr("href");
				var topPx = $(href).offset().top;
				$('html,body').animate({ scrollTop: topPx }, 350, "swing");
				return false;
        	});
		}
			};
})(jQuery);
