// JavaScript Document
$(function () {
	if (! $.browser.safari) {
		$('.smooth-page').click(function () {
			$(this).blur();
			$('html,body').animate({ scrollTop: 0 }, 'slow');
			return false;
		});
	}
});

