
function modalOpen (dialog) {
			dialog.overlay.fadeIn('slow', function () {
			dialog.container.fadeIn('slow', function () {
			dialog.data.hide().slideDown('slow');	 
		});
	});
}
jQuery.noConflict();  
	jQuery(document).ready(function(){

		//jQuery("#priceTable").tablesorter(); 
		jQuery('a.email').each(function(){
			e = this.rel.replace('/','@');
			this.href = 'mailto:' + e;
			$(this).text(e);
		});
		jQuery('a#enews_link').click(function (e) {
		e.preventDefault();
		jQuery('#enews_modal').modal({onOpen: modalOpen});
		return false;
	});
		jQuery("a.liexternal:not()").click(function(){
		window.open(this.href);
		return false;
	}).attr("title", "Opens in a new window");

	});
