var root_url = "index.html";

$(document).ready(function() {
	$('.internal-link').click(function() {
		var link = $(this).attr('href');
		link = link.replace(root_url,"");
		$.address.value(link);
		return false;
	});
	$('#nav-group1').click(function() {
		$('#group1').show(200);
		$('#group2').hide(50);
		$('#nav-group2').removeClass('active');
		$('#nav-group1').addClass('active');
		return false;
	});
	$('#nav-group2').click(function() {
		$('#group2').show(200);
		$('#group1').hide(50);
		$('#nav-group1').removeClass('active');
		$('#nav-group2').addClass('active');
		return false;
	});
});
