/*	--	Author: Robin Nicholl
	--	Date: 2010-05-27
	--	jQuery enabling functions
		*/
$(document).ready(function(){
	
	var options = {
		newsList: "#news",
		startDelay: 100,
		tickerRate: 80,
		loopDelay: 4000,
		stopOnHover: true,
		placeHolder1: "_",
		prefix: "Stories: "
	}
	$().newsTicker(options);
	$("#newsfeed").show();
	
	$("#menu").hide();
	$("#arrow_clicker").click(function(){
		$(this).toggleClass('down');
		$(this).next().slideToggle(200);
	});
});
