// Imulus Global Javscript Code

// Let's clarify those external links with an icon 
$(document).ready(function() {
	$('a:not(:has(img)|.button|#twitter|#facebook)').filter(function() {
		return this.hostname && this.hostname !== location.hostname;
	}).after(' <img class="external" src="/images/icons/external.gif" alt="external link"/>');
});

//open an external link window for anything in the resources area on the Resources page
$("#secondary-col a[href^='http:']").not("[href*='meadowscastlerock.com']").attr('target','_blank');
$(".news-center #sub-content .grid a[href^='http:']").not("[href*='meadowscastlerock.com']").attr('target','_blank');
