var site = function() {
	this.navLi = $('nav > ul > li').children('ul').css('display', 'none').end();
	this.init();
};

site.prototype = {
	
	init : function() {
		this.setMenu();
	},
	
	setMenu : function() {
		this.navLi.hover(function() {
			$(this).find('ul').stop(true, true).slideDown(250);
		}, function() {
			$(this).find('> ul').stop(true, true).slideUp(200);
		});
	}
	
}

new site();
