$(function () {
		if (! $.browser.safari) {
		$('.jumptop').click(function () {

			$('html,body').animate({ scrollTop: 0 },{duration: 300,easing:"easeOutExpo"});

			return false;
			});
		}
		});
