I checked everywhere.
Can you please have a look
http://www.arredoscout.it/beta/
I found this in the html output but don't really know if is a K2 plugin or other:
jQuery.noConflict();
jQuery(document).ready(function(){
jQuery(function () {
var scrollDiv = document.createElement('div');
jQuery(scrollDiv).attr('id', 'toTop').html('^ Back to Top').appendTo('body');
jQuery(window).scroll(function () {
if (jQuery(this).scrollTop() != 0) {
jQuery('#toTop').fadeIn();
} else {
jQuery('#toTop').fadeOut();
}
});
jQuery('#toTop').click(function () {
jQuery('body,html').animate({
scrollTop: 0
},
800);
});
});