jQuery(document).ready(function(){
	$('.extrahipo').hide("fast",function(){
		$('.addhipo').show();
	});
	$('.addhipo a').click(function(e){
		e.preventDefault();
		var fieldsetToShow = $("#extrahipo" + $(this).attr('href'));
		fieldsetToShow.show();
	});
})
