$(function(){

	var showSpeed = 300;
			
	$('.prdsBlk').slideUp(showSpeed);
	
	//def
	var prdSelect = location.href.split("?")[1];
	if(prdSelect){
		var tgtPrd = "#prdtt_"+prdSelect;
		$(tgtPrd+' .prdsBlk').slideDown(100);
		$(tgtPrd+' h2').addClass("opened");
	}
	
	
	//click
	$("#textRim h2").click(function(){
		var tgtId = $(this).parent().attr("id");
		var openFlag = $(this).attr("class");
										 
	  $("#"+tgtId+" .prdsBlk").animate(
		{height: "toggle", opacity: "toggle"},
		showSpeed );
	  
	  
	  if(openFlag == "dmOut opened"){
	  	$(this).removeClass("opened");
	  }else{
	 	 $(this).addClass("opened");
	  }
	});
	
});




