/*function obrir(nom,amplada,baixada) {
params ="left=40,top=40,screenX=0,screenY=0,status=no,toolbar=no,width="+amplada+",height="+baixada+",directory=no,resize=no,scrollbars=no";
result = window.open(nom,"",params);
}
*/

/* fa que tots els links marcats com a rel="extenal"
sobrin en una pàgina blanca i s'afegeix una classe per posar la icona de vincle extern amb css */
function externalLinks() {
  $('a[@rel=external]').attr('target', '_blank');
  $('a[@rel=external]').addClass('external');
}
$(document).ready(externalLinks);



/* fa que tots els pdfs sobrin en una pàgina blanca */
function doPopups()
{
  $('a[@href$=.pdf]').attr('target', '_blank');
}
$(document).ready(doPopups);


/* 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);



/*mostra el text informatiu al camp de cerca*/
function clear_search_text(){
  $(this).val('');
}
$(document).ready(function () {
  $('#text-cerca').one('focus', clear_search_text);
});




$(document).ready(function() { 
	$("div#titol_grafic").nifty("transparent");
	$("div.taronja").nifty("transparent");
	$("div#barra_pestanyes li a").nifty("top transparent");
});


$(document).ready(function() { 
	$("a.fancyboxenviar_amic").fancybox({
		'overlayShow':	true,
		'zoomSpeedIn':	0, 
		'zoomSpeedOut':	0,
		'frameWidth' : 450,
		'frameHeight' : 400
	});
	$("a.fancyboxform").fancybox({
		'overlayShow':	true,
		'zoomSpeedIn':	0, 
		'zoomSpeedOut':	0,
		'frameWidth' : 550,
		'frameHeight' : 450
	});
	$("a.fancybox").fancybox({
		'overlayShow':	true,
		'zoomSpeedIn':	0, 
		'zoomSpeedOut':	0
	});	
	
	// identifiquem el primer i últim element de las listes
	$('ul, ol').each(function() {
		$(this).children('li:first').addClass('first');
		$(this).children('li:last').addClass('last');
	});
});
