/* -----------------------------------------
NAVIGATOR MULTIMEDIA INC SCRIPTS
Designed by: Chris Satterthwaite
Modified By: Chris Satterthwaite
Date Modified: Nov.19.2009
----------------------------------------- */
//Second Navigation Script//
function initMenu() {
$('#second-navigation ul').hide();
$('#second-navigation li a').click(
	function() {
		var checkElement = $(this).next();
		if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
		return false;
		}
		if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
		$('#second-navigation ul:visible').slideUp('normal');
		checkElement.slideDown('normal');
		return false;
		}
		}
	);
}

$(document).ready(function(){
initMenu();/*Run second-navigation script*/

//Featured Photo//	
	$('#fade').innerfade({
			speed: 'slow',
			timeout: 8000,
			type: 'sequence',
			containerheight: '280px'
	});
	
//Main Navigation keep the overstate on when mouse is on dropdown//	
	$('#main-navigation > li').hover(
			function(){$(this).addClass('on');},
			function(){$(this).removeClass('on');}
	);
	
	
//Make the whole home-call-outs div clickable//		
	$(".home-call-outs").click(function(){
	 window.location=$(this).find("a").attr("href"); return false;
	});
});




