// THIS FILE CONTAINS ALL THE SETTINGS FOR THE JQUERY PLUGINS USED
jQuery(document).ready(function () {

//CUSTOM
	jQuery('#nav li:last-child').addClass('last');
	jQuery('#newsList li:last-child').addClass('last');
	
//ACCORDION
	jQuery('#accordion').accordion({
		collapsible: true,
		autoHeight: false
	});

});//end document ready

