$(function() {
		$(window).scroll(function() {
			if($(this).scrollTop() != 0) {
				$('.toTop').fadeIn();	
			} else {
				$('.toTop').fadeOut();
			}
		});
	 
		$('.back').click(function() {
			$('body,html').animate({scrollTop:0},800);
		});	
	
		
		$("img").lazyload({ 
    placeholder : "img/grey.gif",
    effect : "fadeIn"
});
	});

