$(document).ready(function(){
	Interface.toggleMenu();	

});

var Interface = {
	toggleMenu: function(){	
		$(".MenuGlobal li").hover(
			function(){
				if($(this).is(".lk-novos")){
					$(this).addClass("menu_sub");
				}
				
				$(this).find("> .sub").show();	
				
			},
			
			function(){
				$(this).find(".sub").hide();
				
				if($(this).parent().find(".subMenu_a1").is(".subMenu_a")){
					$(".MenuGlobal .lk-novos").removeClass("menu_sub");
				}
			}
		);
	},

	videoPlayerList: function(opts){
		var links = $(opts.menu).find('a');
		links.click(abreVideo).eq(0).click();
	}
}
