$(document).ready(function(){
   
$("a[rel='show-content']").click(function(e){
		e.preventDefault();
		if($(this).attr("class") == "closed")
		{
			$(this).attr("class", "opened").text("Részletek elrejtése");
			$(this).parent().parent().parent().prev().fadeIn();
		}
		else
		{
			$(this).attr("class", "closed").text("Részletek megjelenítése");
			$(this).parent().parent().parent().prev().slideUp();
		}
    });

$("a[rel='show-news']").click(function(e){
		e.preventDefault();

			$("#more-news").hide();
			$("#news").fadeIn();
			
    });

$("a[rel='question-answer']").click(function(e){
		e.preventDefault();

			$(".answer").slideUp();
			$(this).parent().next().fadeIn();
			
    });

});
