function toggle_header(grupa, wybrana){
	if(wybrana){
		$('#profil_'+grupa).children('.profil_tresc').show();
		$('#strzalka_'+grupa).attr('src', '/img/strzalka_up.gif');
	}else{
		$('#profil_'+grupa).children('.profil_tresc').hide();
		$('#strzalka_'+grupa).attr('src', '/img/strzalka.gif');
	}
	$('#profil_'+grupa).children('h3').bind('click', function(){
		if($('#profil_'+grupa).children('.profil_tresc').is(':hidden')){
			$('#profil_'+grupa).children('.profil_tresc').show(100);
			$('#strzalka_'+grupa).attr('src', '/img/strzalka_up.gif');
		}else{
			$('#profil_'+grupa).children('.profil_tresc').hide(100);
			$('#strzalka_'+grupa).attr('src', '/img/strzalka.gif');
		}
	});	
};