;(function($){
	window['Talents'] = {
		init: function() {
			this.initMenu();
		},
		initMenu: function() {
			$('ul.menu li')
					.hover(
						function(){ $(this).find('> ul').show(); },
						function(){ $(this).find('> ul').hide(); }
					);
				
		}
	};
	
	$(function(){ Talents.init(); });
})(jQuery);
