$(document).ready(function() {
   /*
	if ($('#flv_container').length == 0) { // This stops slideshow from cycling for flash video pages, otherwise playback might stutter during cycling.
		$('#header_slideshow').cycle({
			fx: 'fade',
			speed: 1500,
			timeout: 8000
		});
	};

	$('#home_slideshow').cycle({
		fx: 'fade',
		speed: 500,
		timeout: 8000,
		pager: '#home_slideshow_pager'
	});
	*/

	if ($('#nd_home').length > 0) {
		$('#mission').cycle({
			fx: 'fade',
			speed: 1500,
			timeout: 8000,
			autostop: 1
		});
	};



	// Popup Nav
	$("#nav ul ul").css({display: "none"}); // Opera Fix
	$("#nav ul").children("li").hover(function(){
		$(this).css({position: "relative",zindex: "99"});
		$(this).find('ul:first:hidden').css({visibility: "visible",display: "none"}).show();
	},function(){
		$(this).css({position: "static"});
		$(this).find('ul:first').css({visibility: "hidden"}).hide();
	});

	$("#nav ul.nav1 > li:last-child").addClass("lastitem");
});
