/* 
=========================================================================================================
Copyright 	: Copyright (c) 2009 JPL & The Hershey Company, Inc. All Rights Reserved.
Author(s) 	: J Jackson - jjackson@jplcreative.com
Date      	: 08/26/2009
Notes     	: js for navigation rollovers
=========================================================================================================
			REQUIRES JQUERY */

$(document).ready(function(){

	// navigation rollovers
	$("#topnav li#tour, #topnav li#survivors").hover(
		function () {
			$(this).addClass('hover');
			$(this).children('ul').fadeIn('fast');
		},
		function () {
			$(this).removeClass('hover');
			$(this).children('ul').fadeOut('slow');
		}
    );

});