// Imulus Global Javscript Code

// Create an external link icon using an image
$(document).ready(function() {
	$('a:not(:has(img)|.button|.extranetLink)').filter(function() {
		return this.hostname && this.hostname !== location.hostname;
	}).after(' <img class="external" src="/images/icons/external.gif" alt="external link"/>');


	// Open external links in a new window

	$('a').filter(function() {
		return this.hostname && this.hostname !== location.hostname;
	}).attr('target', '_blank');

});



