function showOtherCompetitionItems(wrapper){
	$('.other-items', wrapper).css('display', 'block');
	$('#other-items-btn', wrapper).css('display', 'none');
}
$(document).ready(function(){
	$('.top-menu-competitions-item').mouseover(function(){
		$(this).children('.drop-down-menu').css('display', 'block');
	});
	
	$('.top-menu-competitions-item').children(".drop-down-menu:not([fixed*=''])").parents('.top-menu-competitions-item').mouseout(function(){
		$(this).children('.drop-down-menu').css('display', 'none');
		//alert('test')
	});
	//$('.top-menu-competitions-item').children(".drop-down-menu:not([fixed*=''])").parents('.top-menu-competitions-item').css('border', 'solid 1px #f00');
	
	$('.drop-down-menu > .item').mouseover(function(){
		$(this).children('.drop-down-sub-menu').css('display', 'block');
	});
	
	$('.drop-down-menu > .item').mouseout(function(){
		$(this).children('.drop-down-sub-menu').css('display', 'none');
	});
});

