$(document).ready(function(){
	$("div.module").hide();
	$("div.module:eq(0)").show();
	$("a.rightnav").click(function(){
		$("div.module").hide();
		$("div.module#" + this.getAttribute("id")).show();
		return false;
	});
});
