
/* ------------------------------------
*
*Since: 2008-05-07
*Editor: BBmedia Inc. D_sasaki
*
-------------------------------------*/

$(function() {
	$(".proTabArea").each(function(){
		$(this)	
		.find(".listWrap01")
		.not(":first")
		.hide();
	});
								  
	$(".proTab").each(function(){
		$(this)
		.find("li:first")
		.addClass("open");
	});
	
	$(".proTab li a")
	.addClass("dontScroll")
	.click(function(){
		$(this)
		.parent("li")
		.addClass("open")
		.siblings("li")
		.removeClass("open");
		
		var targetContentID = $(this).attr("href").split("#")[1];
		
		$("#" + targetContentID)
		.show()
		.siblings("div")
		.hide();
		return false;
	})
	.focus(function(){
		this.blur();
	})
});