var menu = function() {
	this.navLi = $('#menuHeader li').children('ul').hide().end();
	this.init();
};

menu.prototype = {
 	
 	init : function() {
 		this.setMenu();
 	},
 	
 	setMenu : function() {
 	
 		this.navLi.hover(function() {
 			// mouseover
			$(this).find('> ul').stop(true, true).slideDown('fast');
			//$('#youtubeFrame').stop(true, true).animate({'margin-top':'140px'},100);
 		}, function() {
 			// mouseout
 			$(this).find('> ul').stop(true, true).hide();	
			//setTimeout(function(){if (!$('.sub-menu').is(":visible")){$('#youtubeFrame').stop(true, true).animate({'margin-top':'0'},100)}},110);
		});
 		
 	}
 
}
