/* UFC Community */
/* Navigation Javascript
----------------------------------------------------------------------------- */


/* DOCUMENT READY FUNCTION
----------------------------------------------------------------------------- */

	$(document).ready(function() {
		
			dropDown();
			

/* END READY FUNCTION
--------------------------------------------------------------------------- */		

	});
	
	
/* FUNCTION: Drop Down Menu
----------------------------------------------------------------------------- */

	function dropDown() {
	
		$('ul.main-menu li.menu-item').hover(function() {
		
			$(this).children('div.dropdown').show();
			$(this).addClass('active');
		
		}, function() {
		
			$(this).children('div.dropdown').hide();
			$(this).removeClass('active');
		
		});
		
		$('#more-selector').hover(function() {
			
			$(this).children('#dd-more-links').show();
			
		}, function() {
			
			$(this).children('#dd-more-links').hide();
			
		});
	
	}
