var option_all = new Array();

$(document).ready(function(){
	$(".button_qu").click(function () {
      id=$(this).attr("rel");
	  elem=$("#question"+id);
	  elem2=$("#objawy_grafy div:last");
	  $("#objawy_grafy").append(elem.clone(true));
	  elem.remove();
      $("#question"+id).slideDown("slow");
	  $(this).parent().parent().find("h3 a.zmien").show();
	  $(this).parent().slideUp("slow");
	  //option_all[option_all.length]=$(this).parent().parent().attr("id");
	   option_all[option_all.length]='question'+id;
	  return false;
    });
	
	$(".zwin").click(function () {	  
		var start=0;
		var option_all2 = new Array();
		id=$(this).parent().parent().attr("id");
		if ($(this).hasClass('first')) { start=1;}
		for ( var i in option_all )
		{
			if (start==1) { $('#'+option_all[i]).hide(); $('#'+option_all[i]+' .text').show();} else {option_all2[option_all2.length]=option_all[i];}
			if (option_all[i]==id) {start=1;}
		} 
		option_all=option_all2;
		$(this).parent().parent().children().filter(".text").slideDown();
		$(this).parent().parent().find("h3 a.zmien").hide();
		return false;		
	});					  

});

