var name = "#sidebar";  
var menuYloc = null;  
var menuYoriginalloc = null;

jQuery(function($) {
// Remove that annoying auto hover title
$("a").hover(function(){$(this).attr("title","")})


// Scrolling sidebar
var offset = $(name).offset();
var topPadding = 5;
	$(window).scroll(function() {
		if ($(window).scrollTop() > offset.top) {



			if ( ($(window).scrollTop() - offset.top + topPadding+$(name).height()) >= $(document).height()-$(name).height() ) {
				// $(name).stop().animate({
				// marginTop: $(window).scrollTop() - offset.top
				// });

				return false;
			}else{
			$(name).stop().animate({
				marginTop: $(window).scrollTop() - offset.top + topPadding
			});
		}
		} else {
			$(name).stop().animate({
				marginTop: 0
			});
		};
	});
});	


