$(function(){

	if(typeof console === "undefined") {
		console = { log: function() { } };
	}
	
	var $ = jQuery;
	
	var HILEX	= {
		
		nav: function() {
			$('.node_careers a').attr('target', '_blank');
		},
		
		sidebar: function() {
			$('#sidebarTabs a').click(function(){
				tab = $(this).attr('rel');
				$('#sidebarTabs .active').removeClass('active');
				$(this).addClass('active');
				$('#sidebarContent .active').removeClass('active');
				$('#'+tab).addClass('active');
				return false;
			});
		},
		
		init: function() {
			HILEX.nav();
			HILEX.sidebar();
		},
		
	};
	
	HILEX.init();
	
		
	});
