jQuery(document).ready(function($) { 
	// fade out any flash messages we may have after 5 seconds
	setTimeout('$("div.message[id$=Message]").fadeOut();', 5000);
	// remove first bullet from the top nav
	$('#wrapper .masthead .topMenu ul li:first-child').css('list-style-type', 'none');
	// remove last divider from sub nav
	$('#wrapper .menu ul li ul li:last-child').css('background-image', 'none');
	// indicate third level nav
	$('#wrapper .menu ul li ul li ul').parent('li').addClass('withChild');
	// colorbox init
	$('a[rel="lightbox"]').colorbox();
	$('a[rel="colorbox"]').colorbox();
	// ie hover fixes
	$('#wrapper .menu ul li').hover(
		function() {
			$(this).children('ul').css('display', 'block');
		},
		function() {
			$(this).children('ul').css('display', 'none');			
		}
	);
	
}); 