$(function(){
	
	
	/*
	 * append extra span to all top nav links
	 * we use these spans to add the arrow icon
	 */
	$('div#nav a').append('<span class="arrow"></span>');
	/*
	 * add styles to every first p tag after H1 in the main content
	 */
	$('div#main_content h1+p').css('font-weight','bold');
	$('div#main_content h1+p a').css('font-weight', 'bold');
	
	/*
	 * setup page banner slide shows
	 */
	$('#home_banner').cycle({
		prev:   '#prev',
		next:   '#next',
		timeout: 6000,
		speed: 4000
	});
	$('#home_banner').css("display", "block");
	$('#page_banner').cycle({
		prev:   '#prev',
		next:   '#next',
		timeout: 6000,
		speed: 4000
	});
	$('#page_banner').css("display", "block");
	
});
