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

site.prototype = {

	init : function() {
		this.setMenu();
	},
	
	// Slide aktivieren und IE6 Unterstützung (CSS >!)
	
	setMenu : function() {
		this.menuLi.hover(function() {
			// mouseover
			$(this).find('> ul').stop(true, true).slideDown(250);
		}, function() {
			// mouseout
			$(this).find('> ul').stop(true, true).fadeOut(200);
		});
	}
	
}

new site();


