$(document).ready(function() {
	  $("img").lazyload({
              effect : "fadeIn"
      });
	  
	  $(window).scroll(function() {
			if($(this).scrollTop() > 300) {
				$('#toTop').fadeIn();	
			} else {
				$('#toTop').fadeOut();
			}
		});
	 
		$('#toTop').click(function() {
			$('body,html').animate({scrollTop:0},800);
	});	
		
});
