$(function(){

	// Smooth Scroll
	if (! $.browser.safari) {
		$('.innerLink').click(function () {
			//$(this).blur();
			$('html,body').animate({ scrollTop: $($(this).attr("href")).offset().top },280,'swing');
			return false;
		});
	}

});
