jQuery(document).ready(function(){

				$("#weather_frame_1").show();

	$(".tith2>ul>li").click(function() {

			_location = $(this).attr("data");


		$(".tith2>ul>li").each(function(){
			$(this).removeClass();

			if($(this).attr("data") == "gj"){
				$(this).addClass("first");
			}
		})

			if(_location == "gj"){
				
				$("#weather_frame_1").show();
				$("#weather_frame_2").hide();
				$("#weather_frame_3").hide();

				$("#way1").show();
				$("#way2").hide();
				$("#way3").hide();

			}else if(_location == "yi"){
				$("#weather_frame_1").hide();
				$("#weather_frame_2").show();
				$("#weather_frame_3").hide();

				$("#way1").hide();
				$("#way2").show();
				$("#way3").hide();

			}else if(_location == "sj"){
				$("#weather_frame_1").hide();
				$("#weather_frame_2").hide();
				$("#weather_frame_3").show();

				$("#way1").hide();
				$("#way2").hide();
				$("#way3").show();
			}

		$(this).addClass("current");

		return false;

	});

})	// jQuery


