$(function(){

	//-------------------------------------------------------------------------------------------
	// DYNAMICALLY ADD UTM LINK TRACKING TO ALL DRTMS.NET EXTERNAL LINKS
	//------------------------------------------------------------------------------------------


	$('a').each(function(){
		var href = $(this).attr("href");

		if(href !== undefined)
		{
			if(href.indexOf("drtms.net")!=-1)
			{
				$(this).click(function(){

					$(this).attr("href","redir.html?url="+escape(href));

					return true;
					
				});
			}
		}
	});
});