// Imulus Global Javscript Code

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

	$("#main table tbody tr:odd").addClass("alt");

	$(function() {
		var zIndexNumber = 1000;
		$('#header ul#navigation li').each(function() {
			$(this).css('zIndex', zIndexNumber);
			zIndexNumber -= 10;
		});
	});
});

