$(document).ready(function() {

	/* menu lenyilas */
	$('.menu_table td div').mouseover(function() {
		$(this).parent().find('.menu_open').css('display', 'block');
	});
	$('.menu_table td div').mouseout(function() {
		$(this).parents().find('.menu_open').css('display', 'none');
	});
	
	
	/* esemenynaptar */
	$('.esemeny_row').each(function() {
		
		var h1 = $(this).find('.esemeny_date').height();
		var h2 = $(this).find('.esemeny_text').height();
		
		if (h1>h2) {
			$(this).find('.esemeny_text').height(h1);
		} else {
			$(this).find('.esemeny_date').height(h2+12);
		}
		
	});
	
	
	/* fix header */
	var fullWidth = $(window).width();
	var headerWidth = $('#fix_header').width();

	if (fullWidth<1000) {
		$('#fix_header').width(1000);
		//if (headerWidth>fullWidth) {
			$(window).scroll(function() {
				var headerLeft = ($(window).scrollLeft()*(-1));
				headerLeft = (1000/fullWidth)*headerLeft;
				$('#fix_header').css('left', headerLeft);
			});
		//}
	} else {
		$('#fix_header ul').css('margin-left', ((fullWidth-$('#fix_header ul').width())/2)-($('#fix_header span').width()+10));
	}

});
