$(document).ready(function() {
	// h1
	$("h1").append("<span></span>");
	
	//cantonades arrodonides
	$("div#avis").nifty("transparent");
	
	// mostra info
	$('#info').hide();
	$('a#mostra-info').click(function() {
		$('#info').slideDown('slow');
		return false;
	});
	// amaga info
	$('a#amaga-info').click(function() {
		$('#info').slideUp('slow');
		$('#info').hide();
		return false;
	});
	
	// evitem spam als correus
	$("a[href*='(ELIMINAR)']").each(function(i) {
		omg = $(this).attr('href');
		omg2 = $(this).text();
		$(this).attr('href', omg.split('(ELIMINAR)').join(''));
		$(this).text(omg2.split('(ELIMINAR)').join(''));
	});	
});