		/*
                $(function(){
	
                        $(".contents:first").show();

                $("a.menu").click(function(){
                        $(".contents").fadeOut();
                        $($(this).attr("href")).fadeIn();
                        return false;
                });


                });
		*/

		$(function(){
			if(location.hash){
			$(location.hash).show();
		}else {
			$(".contents:first").show();
		}
		
		$("a.menu").click(function(){
			$(".contents").fadeOut();
			$($(this).attr("href")).fadeIn();
		});     
			
			
		});


