$(document).ready(function() {
	
	
	$('#content-navigation a').click(function() {
		
		if ($(this).attr('class') == 'void') { return true; }
		
		target = $(this).attr('href');
		
		$('#content-main div').removeClass('active');
		$('#content-navigation a').removeClass('active');
		$(target).addClass('active');
		$(this).addClass('active');
		
		return false;
		
		});
	
	$('.rogue-link').click(function() {
		
		if ($(this).attr('class') == 'void') { return true; }
		
		target = $(this).attr('href');
		
		$('#content-main div').removeClass('active');
		$('#content-navigation a').removeClass('active');
		$(target).addClass('active');
		$(this).addClass('active');
		
		return false;
		
	});
	
	});