$(document).ready(function() {
	var theLoc = $('#articles-nav').position().top;
	var scrollBottom = $('#content').height() - 1000;
	$(window).scroll(function() {
		if(theLoc >= $(window).scrollTop()) {
			if($('#articles-nav').hasClass('fixed')) {
				$('#articles-nav').removeClass('fixed');
			}
		} else { 
			if(!$('#articles-nav').hasClass('fixed')) {
				$('#articles-nav').addClass('fixed');
			}
		
		} 
	});
});


