function showDays(id)
	{	
		if(document.getElementById(id).style.display == "none")
			{
			document.getElementById(id).style.display = "block";
			document.getElementById(id).style.zIndex = "1";
			document.getElementById('select_nap').style.height = "130px";
			}
		else
			{
			document.getElementById(id).style.display = "none";
			document.getElementById('select_nap').style.height = "13px";
			}
	}
function changeDays(id)
	{
		document.getElementById('aktualis_nap').innerHTML = document.getElementById(id).innerHTML;
		document.getElementById('napok').style.display = "none";
		document.getElementById('select_nap').style.height = "13px";
	}
function changeBg(id)
	{
		for(i=1;i<=7;i++)
			{
			document.getElementById('nap'+i).style.backgroundColor = "";
			}
		document.getElementById(id).style.backgroundColor = "#C1BFBE";
	}
function showDiv(id,id2) 
			{
			var show_div = $("div:#"+id);
			if(show_div.css('height') == "0px") 
				{
				$("div:#"+id2).animate({ height: "0px" })
				show_div.animate({ height: "420px"})
				
				show_div.prev('div').removeClass('legolvasottabb_link').addClass('legfrissebb_link'); 
				$("div:#"+id2).prev('div').removeClass('legfrissebb_link').addClass('legolvasottabb_link'); 
				}	
			}
