
function show(x){

  $(x).toggle(700);
  return false;

}
  
$(document).ready(function() {

  $('img[@src$=.png],.png').ifixpng(); // IE png fix
  
  $('a.emailt').each(function(){
		e = this.rel.replace('/','@');
		this.href = 'mailto:' + e;
	$(this).text('E-mail');
	});
	
	$('a.email').each(function(){
		e = this.rel.replace('/','@');
		this.href = 'mailto:' + e;
		$(this).text(e);
	});
	
		$('a.emailsubjectrecrut').each(function(){
		e = this.rel.replace('/','@');
		this.href = 'mailto:' + e + '?subject=Candidature spontanée TAL';
		$(this).text(e);
	});
	
	  $('a.emailimg').each(function(){
		e = this.rel.replace('/','@');
		this.href = 'mailto:' + e;
	$(this).html('<img src="img/bt-repondre.gif" alt="" />');
	});

 
});
