////////////////////
// Hero Spotlight //
////////////////////


// GLOBAL VARS
var menu;


// Document Ready
$(document).ready( 
	function() {
	
	
	// SET VARS
	menu = $('#hero-spotlight-menu');
	
	
	
	/*
	*
	* MENU CLICK - TEMP TEST
	*
	*/	
	menu.hover(
		function() {
			
			$(this).stop().animate( {opacity: 1} );
				
		},
		function() {
			
			$(this).stop().animate( {opacity: .45} );
				
		}
	);	
	
	
	
	
	}); // end of document.ready

