function auto_boxrow_title(container) {
	
	$(container + " .box-row").each(function (i) {
		var max_height = 0;
		$(this).children(".box").children(".title").each(function (b) {
			if ($(this).height() > max_height) {
				max_height = $(this).height();
			}
		});
		$(this).children(".box").children(".title").each(function (b) {
			$(this).height(max_height);
		});
	});
}

function auto_height(container, item) {
	var max_height = 0;
	$(container + ' ' + item).each(function (i) {
		if ($(this).height() > max_height) {
			max_height = $(this).height();
		}
	});
	$(container + ' ' + item).each(function (i) {
		$(this).height(max_height);
	});
}

function more_sports_toggle() {
	$("#more-sports-on").toggleClass('hidden');
	$("#more-sports-on .png").pngfix();
}

function toggle_news(show) {
	$("#news-menu").removeClass("news-menu-1").removeClass("news-menu-2");
	$("#news-menu").addClass("news-menu-" + show);
	$("#news").children(".news-content").addClass("hidden");
	$("#news-content-" + show).removeClass("hidden");
	auto_boxrow_title('#news-content-' + show);
}

function toggleMoreMembers() {
	$('.members').children('a.hidden').removeClass('hidden');
	$('#more-members').addClass('hidden');
	
}

function toggleSTAF(id, node, height) {
	
	var h = 1;
	var o = 0;
	if ($(id).height() == 1) {
		h = height;
		o = 1;
	}
	$(node).blur();
	$(id).animate({
		height: h,
		opacity: o
		},{
		duration: 600,
		easing: 'easeInOutExpo',
		complete: function() {
//			$(node).toggleClass('less-details');
		}
	});
}

function staf_submit(form) {
	if (form.staf_name.value.length == 0 || form.staf_email.value.length == 0 || form.staf_fname.value.length == 0 || form.staf_femail.value.length == 0) {
		alert('Minden mezőt ki kell tölteni!');
		return false;
	}
	return true;
}

function df_swap_top10(id) {
	var old = $('#top10-main').html();
	var old_thumb = $('#top10-main-thumb').html();
	console.debug(old);
	console.debug(old_thumb);
	$('#top10-main').html($('#top10-item-content-' + id).html());
	$('#top10-main-thumb').html($('#top10-item-thumb-' + id).html());
	$('#top10-item-content-' + id).html(old).attr('id', 'top10-item-content-' + dft10_current);
	$('#top10-item-thumb-' + id).html(old_thumb).attr('id', 'top10-item-thumb-' + dft10_current);
	dft10_current = id;
}
/*
$(document.body).mousemove(function (e) {
	var node = $("#more-sports-on");
	var offset = node.offset();
	var w = node.width();
	var h = node.height();
	if (e.pageX < offset.left || e.pageX > offset.left + w || e.pageY < offset.top || e.pageY > offset.top + h) {
		console.debug(e.pageX, e.pageY, offset.top, h, offset.top + h);
		$("#more-sports-on").addClass('hidden');
	}
	

});
*/