// <![CDATA[
///////////////////////////////////////////////////////////////////////////////////////////
// EXECUTE
///////////////////////////////////////////////////////////////////////////////////////////
var $j = jQuery.noConflict();

$j(document).ready(function() {
	// Cufon moved to footer.php, end of document, to fix the flash of unstyled content bug with Cufon
	Cufon.replace('h1, h2, h3, .rss p, div#nav>div.menu-header>ul>li>a', { hover: true });

	////////////////////////////////////////////////////////////
	// Nav - Superfish main nav
	////////////////////////////////////////////////////////////
	$j('div#nav div.menu-header ul').superfish({
		disableHI: true,
		delay: 200, // amount of time to wait before hiding drop-down menus
		animation: { height: 'show' },
		speed: 300,
		autoArrows: false,
		dropShadows: false
	});
	////////////////////////////////////////////////////////////
	// Nav - Additional hover state so the tab stays 
	// highlighted when browsing the subnav
	////////////////////////////////////////////////////////////
	/*
	$j('div#nav>div.menu-header>ul>li')
		.bind('mouseover hover', function() {
			$(this).addClass('nav-hover');
		})
		.bind('mouseout', function() {
			$(this).removeClass('nav-hover');
		});
	*/

	// Remove the last border that occurs in the main nav list
	$j('div#nav>div.menu-header>ul ul li:first-child').css('border-top', '0');
	$j('div#nav>div.menu-header>ul>:last-child').css('background-image', 'none');
});
// ]]>


