jQuery.noConflict();

function pageSelection() {
	if (document.page_selector.page_selection.value != 0) {
		var url = 'http://www.'+document.page_selector.page_selection.value;
		window.location.href = url;
	}
}


jQuery.fn.hidemaillink = function() {
	var at = / \[ENB1\] /;
	var dot = / \[ENB2\] /g;
	this.each( function() {
		var addr = jQuery(this).text().replace(at,'@').replace(dot,'.');
		var titl = jQuery(this).attr('title').replace(at,'@').replace(dot,'.');
		if (!titl) titl = addr;
		jQuery(this)
		.after('<a href="mailto:'+addr+'" class="mail">'+ titl +'</a>')
		.remove();
	});
};

jQuery(window).ready(function () {
	jQuery('span.mail-link').hidemaillink();
});