
// Mostra el text informatiu al camp de cerca
function clear_search_text_login(){
	$('#campcercar').val('');
}
$(document).ready(function () {
	$('#campcercar').focus(clear_search_text_login);
});

/* funció per evitar spam als correus */
function changeMail() {
	$("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(''));
	});
}
$(document).ready(changeMail);

// nifty corners caixa contacte
window.onload=function(){
if(NiftyCheck()){
	if ($('div.caixa-contacte').parents("div#columna-dreta").length == 1)
	{
		Rounded("div.caixa-contacte","all", "#ffffff","#f0f4f7","big");
	}
	else
	{
		Rounded("div.caixa-contacte","all", "#e6e6e6","#f0f4f7","big");
	}
}
}
