var site = function() {
	this.navLi = $('#nav > li').children('ul').css('display', 'none').end();
	this.init();
};

site.prototype = {

	init : function() {
		this.setMenu();
		
	},
	
	// Enables slidedown menu and adds support for IE7
	
	setMenu : function() {
		
		this.navLi.hover(function() {
			//mouseover
			$(this).find('> ul').stop(true, true).fadeIn(600);
		}, function() {
			//mouseout
			$(this).find('> ul').stop(true, true).slideUp(800);
	
		});
	
	}
	
	
}

new site();
