﻿

$(function() {

	$(window).scroll(function() {
		if($(this).scrollTop() != 0) {
			$('#toTop').fadeIn();	
		} else {
			$('#toTop').fadeOut();
		}
	});
 
	$('#toTop').click(function() {
		$('body,html').stop().animate({scrollTop:0},800, 'easeOutExpo');
	});		

});
