// JavaScript Document
$(document).ready(function(){
	
	$("#menu a").click(function(){
		var ancor = $(this).attr("href");
		$(".content").hide();
		$(ancor).fadeIn();
		
	});	
	
	var url = window.location;
	var anchor2=url.hash;
	if (anchor2 != '')
	{
		$(".content").hide();
		$(anchor2).show();
	}
});
