window.onload = function () {
	startList('articles');
	startList('side_nav_links');
	sliding_setup();
	
	//
	//	This bit should be set to run off of classes, but that's
	//	for the future, not now
	//
	
	input = $('date');
	div = $('date_picker');
	if (input && div) {
		$('date_help').hide();
		input.hide();
		a = new Ajax.Updater(div,'/date_picker.php', {});		
	}
}

