function popUp(link){ // opens link in a new window
	if (!link.href) return;
	window.open(link.href);
	return false;
}

$(document).ready(function(){

	// load flash powered by peak
	swfobject.embedSWF('/res/flash/powered_by_peak.swf', 'powered_by_peak', '178', '45', '9.0.0');
	swfobject.embedSWF('/res/flash/powered_by_peak_fr.swf', 'powered_by_peak_fr', '178', '45', '9.0.0');
	
	// convert emails from form like <span class="email">someone at somedomain dot com</span>
$('span.email').each(function(){
 var email = $(this).html();
 var match = email.match(/([\w\-]+)\sat\s(\w+)\sdot\s(\w+)/);
 if (match && match[1] && match[2] && match[3]){
  email = match[1] + '@' + match[2] + '.' + match[3];
  $(this).html('<a href="mailto:' + email + '">' + email + '</a>');
 }
});

	
});