/* -------------------------------------------------------------------
	* 共通関数実行
	* init
 ------------------------------------------------------------------- */
 
 $(function() {

	$('#Tabs .tab').click(function() {
		$('#Tabs .tab').removeClass('active');
		$(this).addClass('active');
		var image = this.src;
		$('.tabBox').hide();

		var select = $(this).find('a').attr('href');
		$(select).show();
		
		if($(this).children().hasClass('tab04')){
			$.ajax({
				url: "maps.html",
				cache: false,
				success: function(html) {
					$("#Maps").append(html);
				}
			});
		}
		
		return false;
	});
	
	$('#tips area').hover(function() {
		$('.tipBox').hide();
		
		var select = $(this).attr('href');
		$(select).show();

		return false;
	});

});

