﻿// Latest News vertical scroller on home page
$(function() {		
		
	// initialize scrollable 
	$("div.scrollable").scrollable({
		vertical: true, 
		size: 1
		
	// use mousewheel plugin
	}).autoscroll({
		steps: 1,
		interval: 8000
	
	}).circular().mousewheel();
	
});

$(document).ready(function(){
	$('#show-hide-feature-list').hide();
	$(".toggle-button").click(function(){
	  $("#show-hide-feature-list").slideToggle("slow");
	  $(this).toggleClass("toggle-button-active");
	  $(this).text($(this).text() == 'Show feature categories' ? 'Hide feature categories' : 'Show feature categories');
	});

});
