-->
jQuery(document).ready(function(){
jQuery(window).scroll(function() {
console.log(jQuery('body').height(),(jQuery(window).height() + jQuery(window).scrollTop()));
if (jQuery('body').height() <= (jQuery(window).height() + jQuery(window).scrollTop() + 300)) {
jQuery('#fascione').hide();
}else{
jQuery('#fascione').show();
}
});
});