jQuery(document).ready(function($) { 
	// fade out any flash messages we may have after 5 seconds
	setTimeout('$("div.message[id$=Message]").fadeOut();', 5000);
	$('#wrapper .footer .subMenu ul li:last-child').css('border-right', 'none');
	$('#wrapper .menu ul li:last-child').css('background-image', 'none');
	// colorbox init
	$('a[rel="lightbox"]').colorbox({maxWidth:'100%', maxHeight:'100%'});
	$('a[rel="colorbox"]').colorbox({maxWidth:'100%', maxHeight:'100%'});
	// Hover fix for IE
	$('#wrapper .menu ul li').hover(
		function() {
			$(this).children('ul').css('display', 'block');
		},
		function() {
			$(this).children('ul').css('display', 'none');			
		}
	);
});
// font replacement using Cufon - we don't want to wait for the page to load with jQuery
Cufon.replace('#wrapper .content h1', {fontFamily:'Perpetua'});
Cufon.replace('#wrapper .content h2', {fontFamily:'DiavloBold'});