$(document).ready(function() {
	$('#box2 div.articleContainer').cycle();
	
	// Jump to top link
	$('#jump_to_top').click(function(event){
		event.preventDefault();
		$('html, body').animate({scrollTop:0}, 'slow');
		return false;
	});
});
