function init(){
	/*correo*/
	$('span.correo').each(function(i, ele){
		var texto = $(ele).text().replace('[arroba]', '@').replace('[punto]', '.');
		$(ele).html('<a href="mailto:'+ texto +'">'+ texto +'</a>');
	});
	/*enlace externo*/
	$('a[href*="http://"]').click(function(){
		window.open(this.href, '_blank');
		return false;
	})
	/*reglamento*/
	/*$('#footer a[href$=".html"]').click(function(){
		var nw = window.open(this.href, '_nw', 'width=600, height=650, left=0, top=0, scrollbars=1');
		nw.focus();
		return false;
	});*/
	$('#footer a[href$=".html"]').fancybox({
		'width': 550,
		'height': 600,
		'padding': 5,
		'type': 'iframe',
		'hideOnContentClick': true,
		'overlayOpacity': .5,
		'overlayColor': '#000'
	});
}

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