// JavaScript Document
var AplTab = function(boxId){
	var heightArr = new Array();
	var thisPlay = 0;
	var goBool = new Boolean(false);
	$('#' + boxId + ' div').css({display:'block',overflow:'hidden',zoom:'1'});
	$('#' + boxId + ' div').each(function(i){
										  heightArr.push($(this).height());
										  });
	$('#' + boxId + ' div').not(':first').css({height:'0px'});
	var clickHandler = function(i){
		if(i != thisPlay && goBool == false){
			goBool = true;
			$('#' + boxId + ' div:eq(' + i + ')').animate({height:heightArr[thisPlay] + 'px'},500);
			$('#' + boxId + ' div:eq(' + thisPlay + ')').animate({height:'0'},500);
			$('#' + boxId + ' h3:eq(' + thisPlay + ') em').removeClass('thisPage');
			$('#' + boxId + ' h3:eq(' + i + ') em').addClass('thisPage');
			$('#' + boxId + ' div:eq(' + i + ')').queue(function(){goBool = false;$(this).dequeue()});
			thisPlay = i;
		}
	}
	$('#' + boxId + ' h3').each(function(i){
										 $(this).click(function(){clickHandler(i)});
										 });
}