/*
 * News Slider
 */

jQuery.noConflict();

jQuery(document).ready(function(){
	//Hide (Collapse) the toggle containers on load
	jQuery(".news-list-item-bottom").hide(); 

	//Switch the "Open" and "Close" state per click then slide up/down (depending on open/close state)
	jQuery("h3.slider").click(function(){
		jQuery(this).toggleClass("active").next().slideToggle("slow");
		return false; //Prevent the browser jump to the link anchor
	});
});
