
$(function() {
	$(".tpmainbox .upbox .restaurant").hide();
	$(".tpmainbox .upbox .guest").hide();
	$(".tpmainbox .upbox .church").hide();
	$('.tabbox li#hotel img').addClass('active');
	$('.tabbox li#hotel img').attr({src:'images/tab_hotel_active.gif'});

	$(".blistbox#fair").hide();
	$('.com_tabbox li a.place img').addClass('active');
	$('.com_tabbox li a.place img').attr({src:'../images/tab_placeall_active.gif'});
});


$(function tabTop() {
	$('.tabbox img').each(function() {
		$(this).click(function(){
			var tab = this.parentNode.parentNode;
			var idName = tab.id;
			$(".tpmainbox .upbox .upin").each(function() {
				$(this).hide();
			});
			$('.tpmainbox .upbox .upin.'+idName).fadeIn();
			$('.tabbox img').each(function() {
				this.src = this.originalSrc;
				$(this).removeClass('active');
			});
			this.src = this.activeSrc;	
			$(this).addClass('active');
			return false;
		});
	});
});


$(function tabMemb() {
	$('.com_tabbox img').each(function() {
		$(this).click(function(){
			var tab = this.parentNode;
			var idName = tab.className;
			$(".blistbox").each(function() {
				$(this).hide();
			});
			$('.blistbox#'+idName).fadeIn();
			$('.com_tabbox img').each(function() {
				this.src = this.originalSrc;
				$(this).removeClass('active');
			});
			this.src = this.activeSrc;	
			$(this).addClass('active');
			return false;
		});
	});
});

