var $j = jQuery.noConflict();

//For table sorting
$j(document).ready(function() {
	$j('#bulletinTable').dataTable( {
		"aaSorting": [[ 0, "desc" ]]
	} );

	$j('#sermonTable').dataTable( {
		"aaSorting": [[ 0, "desc" ]],
                "iDisplayLength": 50
	} );
});



