jQuery (document).ready(function()
{
	$(".collapse").hide();
	$("h2.more").toggle(function(){
		$(this).addClass("active");
		}, function () {
		$(this).removeClass("active");
	});
	$("h2.more").click(function(){
		$(this).parent().next(".collapse").slideToggle("slow");
	});

    $('html, body').animate({
    scrollTop: $("#tartalom").offset().top
    }, 2000);

    $(".elozmeny_tartalom").hide();
	$("div.elozmeny_fejlec").toggle(function(){
		$(this).addClass("active");
		}, function () {
		$(this).removeClass("active");
	});
	$("div.elozmeny_fejlec").click(function(){
		$(this).next(".elozmeny_tartalom").slideToggle("slow");
	});

    function cimlista(kerulet_val){
      $.post("components/cim/utcak.php", {keruletid: kerulet_val},
      function(data){
         if (data.length>0){
             $("#utca").html(data);
         }
      })
    };

    $('#kerulet').change(function(){
        cimlista($(this).val());
    });
    cimlista($('#kerulet').val());
});

function mennyiseg(elemid, elojel){
  $.post("modules/kosar/tartalom.php", {etelid: elemid, irany: elojel},
  function(data){
     if (data.length>0){
         $(".rendeles").html(data);
     }
  })
};
