jQuery (document).ready(function(){

	$(".collapse").hide();

	$("a.more").toggle(function(){
		$(this).addClass("active");
		}, function () {
		$(this).removeClass("active");
	});

	$("a.more").click(function(){
		$(this).next(".collapse").slideToggle("slow");
	});


});

function mennyiseg(elemid, elojel){
    $.post("components/rendeles/tartalom.php", {termekid: elemid, irany: elojel},
    function(data){
        if (data.length>0){$(".kosar").html(data);}
    })
};
