(function($){
	$.Menu = {
		
		__constructor : function(){
			var me = this;
			me.initConfig();

			// targets (bind em elementos passando o evento)
			me.dropdown();
				
		},
		
		dropdown: function() {
			$("div > #nav > li").mouseover(function() {
				$(this).find('ul').show().end().addClass('ativo');																
			}).mouseout(function() {
				$(this).find('ul').hide().end().removeClass('ativo');
			});
		},

		initConfig: function() {
			var me = this;

			$("#nav li ul").hide();
		}

	}
})(jQuery);