// JavaScript Document by Altis [www.altis.hr] jQuery(document).ready(function() { var content_height = jQuery('#main-content').height(); var sidebar_height = jQuery('#sidebar').height(); if (content_height > sidebar_height) { jQuery('#sidebar').height(content_height + 110); } jQuery(".to-top").click(function(){ jQuery('html, body').animate({scrollTop: "0px"}); }); }); jQuery(window).scroll(function () { var temp = jQuery(window).scrollTop(); var temp2 = jQuery('#sidebar').height() - jQuery('#sidebar-scroll').height() - 110; var window_height = jQuery(window).height(); if ( window_height > ( jQuery('#sidebar-scroll').height() + 110 ) ) { if ( (temp - 110) > temp2) { jQuery('#sidebar-scroll').addClass('bottom'); } else { jQuery('#sidebar-scroll').removeClass('bottom'); } if(temp > 110) { jQuery('#sidebar-scroll').addClass('scroll'); } else { jQuery('#sidebar-scroll').removeClass('scroll'); } } });