/*  ================================================================================
Page Scroller
================================================================================  */
$(function(){
	$('a[href=#top]').click(function() {
		var speed = 800;
		$('html,body').animate({scrollTop: 0},speed,'swing');return false;
		return false;
	});

	if (window.addEventListener)window.addEventListener('DOMMouseScroll', wheel, false);
	window.onmousewheel = document.onmousewheel = wheel;
	function wheel(event){
		$('html,body').stop();
	}

});
