/* =============================================================================
	タブ切り替えUI
============================================================================= */
(function($) {
	$.fn.tabs = function() {
		var _this = this;

		hides();

		$(this).find("li a").click(function() {
			$(this).parent().parent().find("li a").removeClass("current");
			$(this).addClass("current");
			$($(this).attr("href")).show();
			hides();
			return false;
		});

		function hides() {
			var ids = $(_this).find('li a:not(".current")');
			$(ids).each(function() {
				$($(this).attr("href")).hide();
			});
		}
	}
})(jQuery);

