// Inside the function "this" will be "document" when called by ready() 
// and "the ajaxed element" when called because of onAjaxLoad 
var init_f = function() {
	if ($("a.thickbox",this).addClass("thickbox").size()) {
		TB_chemin_animation = "img/circle_animation.gif";
		TB_chemin_close = "img/closebox.png";
		TB_chemin_css = "css/thickbox.css";
		TB_init(this);
	};
}
//onAjaxLoad is defined in private area only
if(typeof onAjaxLoad == "function") onAjaxLoad(init_f);
$(document).ready(init_f);

$(document).ready(function(){
	$("#gm").click(function(){
		$(this).html('<br><iframe width="550" height="450" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.fr/maps?q=19500+Collonges-la-Rouge,+Corr%C3%A8ze,+Limousin&amp;oe=utf-8&amp;client=firefox-a&amp;ie=UTF8&amp;hl=fr&amp;cd=6&amp;geocode=FYmXrwId3UEZAA&amp;split=0&amp;sll=47.278071,4.244624&amp;sspn=0.006295,0.006295&amp;ll=45.064185,1.65679&amp;spn=0.024249,0.047207&amp;z=14&amp;iwloc=A&amp;output=embed"></iframe><br /><small><a href="http://maps.google.fr/maps?q=19500+Collonges-la-Rouge,+Corr%C3%A8ze,+Limousin&amp;oe=utf-8&amp;client=firefox-a&amp;ie=UTF8&amp;hl=fr&amp;cd=6&amp;geocode=FYmXrwId3UEZAA&amp;split=0&amp;sll=47.278071,4.244624&amp;sspn=0.006295,0.006295&amp;ll=45.064185,1.65679&amp;spn=0.024249,0.047207&amp;z=14&amp;iwloc=A&amp;source=embed" style="color:#0000FF;text-align:left" target="_blank">Agrandir le plan</a></small>');
	});
	
	
	
	mel = mask('rene.boutang','wanadoo','fr');
	$(".ml").html(mel);
	
	
	$("#contenus #box img.fermer").click(function(){
		$("#box").fadeOut(500);
	});
	
});

function mask(pref,dom,dlt){
	adr = pref+'@'+dom+'.'+dlt;
	sortie = '<a href="mailto:'+adr+'">'+adr+'</a>'
	return sortie;
}
