mam.link = new function() {
	jQuery.extend(
		this, { 
			version: "1.0",
			initialize: function() {		
				$("a").click(							
					function() {
						var host = 'http://' + window.location.host;
						var link = $(this).attr('href');
						var original_link = escape(link);
						if(link.indexOf(host) == 0) {
							link = link.substring(host.length);
						}
						if(link.indexOf('http') == 0) {
							window.open(link);		
							return false;
						}
//						if(link.indexOf('mailto') == 0) {
//							var person = link.substring(7);
//							window.location.href= '/core/contact_us/contact_us_form.html?person=' + person;
//							return false;
//						}
						return true;
					}
				);
			}	
		}
	);
}