$(document).ready(function($) {
	
	// Using JS to hide 'Home' from dynmic main navigation
	$('ul#nav li:first-child').hide();
	
	// Home Page Cycle
	$('div#cycle').cycle({
		pager: '#cycle_nav'
	});
	
	// News & Events Cycle
	$('div#news_cycle').cycle({
		pager: '#cycle_nav',
		prev: '#prev_event',
		next: '#next_event'
	});
	
});
