// Requires JQuery
// Used with 1.2.6+

// Author: Nabha Cosley, nabha AT ananda...

// Don't run this for IE 5.0 and 5.5
if (!(window.showModelessDialog && !document.implementation)) {

// Do this when the document is (mostly) done loading
jQuery(document).ready(function(){

// External links: Anything outside of www.anandaclaritymagazine.org
	jQuery("a[href^='http://']").not("[href*='www.anandaclaritymagazine.com']").not("[href^='http://anandaclaritymagazine.com']").not("a:empty").addClass("external");
	jQuery("a[href^='http://']:has(img)").not("[href*='www.anandaclaritymagazine.com']").not("[href^='http://anandaclaritymagazine.com']").not("a:empty").addClass("noIcon");
	
	// Add tracking code for all links to other websites
	jQuery(".external").bind("click", function (arr) {		
			// Get the address
			var href = jQuery(this).attr("href");
			// Standardize it
			if ( jQuery(this).hasClass("ad") ) {
                href = href.replace("http://","/external/ad/");
            }
            else {
                href = href.replace("http://","/external/");
            }
			// Add the Google Analytics tracking code, using the actual address
			pageTracker._trackPageview(href);
	});
	
});

}