// Imulus Global Javscript Code

// open all external links in a new window
$(document).ready(function() {
	$('a[href^="http://"],a[href^="https://"]').filter(function() {
		return this.hostname && this.hostname !== location.hostname;
	}).attr('target', '_blank');
});

