
/* 

  ================================================
  PVII TabPanel scripts
  Copyright (c) 2006-2008 Project Seven Development
  www.projectseven.com
  Version:  1.1.1 - script build: 30
  ================================================
  
*/

var p7tpa=new Array();
var isIE5=(navigator.appVersion.indexOf("MSIE 5")>-1);
function P7_setTP(){
	var i,j,h="<sty"+"le type=\"text/css\">\n";
	h+=".p7TP_tabs{display: block;}\n";
	if(document.getElementById){
		for(i=1;i<51;i++){
			h+="#p7tpc"+i+"_1 {display:block;}\n";
			for(j=2;j<51;j++){
				h+="#p7tpc"+i+"_"+j+" {display:none;}\n";
			}
		}
		h+="\n<"+"/sty"+"le>";
		document.write(h);
	}
}
P7_setTP();
function P7_initTP(){
	var i,j,tb,tD,tP,tA,pb="p7TP";
	if(!document.getElementById){
		return;
	};
	p7tpa=arguments;
	for(i=1;i<51;i++){
		tb=pb+i;
		tP=document.getElementById(tb);
		if(tP){
			tD=tP.getElementsByTagName("DIV");
			if(tD){
				for(j=0;j<tD.length;j++){
					if(tD[j].id&&tD[j].id.indexOf("p7tpb")==0){
						tA=tD[j].getElementsByTagName("A");
						if(tA[0]){
							tA[0].p7tpn=new Array(i,tD[j].id);
							tA[0].onclick=function(){
								return P7_TPtrig(this);
							};
						}
					}
				}
			}
		}
	}
}
function P7_TPtrig(a){
	var i,tD,tA,tC,c,d,sb,an=p7tpa[1],wP,h,cP,ch,hD,hh;
	if(typeof(a)!='object'){
		c=a.replace("p7tpc","p7tpb");
		d=document.getElementById(c);
		if(d){
			a=d.getElementsByTagName("A")[0];
		}
	}
	if(a.p7tpn){
		tD=document.getElementById(a.p7tpn[1]);
		if(tD){
			tA=tD.parentNode.getElementsByTagName("A");
			if(an==29&&!isIE5){
				wP=P7_getCD(a);
				h=P7_getPH(wP);
				cP=getTPc(a);
				ch=P7_getPH(cP);
				hD=h-ch;
				if(window.opera){
					P7_setPW(wP);
				}
				wP.style.height=h+"px";
				wP.style.overflow="hidden";
			}
			for(i=0;i<tA.length;i++){
				if(tA[i].p7tpn){
					sb=tA[i].p7tpn[1].replace("p7tpb","p7tpc");
					tC=document.getElementById(sb);
					if(tA[i]==a){
						tA[i].className="down";
						document.getElementById(tA[i].p7tpn[1]).className="down";
						if(tC){
							if(an>0&&an!=29){
								tC.style.visibility="hidden"
								tC.style.display="block";
								setTimeout("P7_TPanim('"+tC.id+"')",100);
							}
							else{
								tC.style.display="block";
							}
							if(an==29&&!isIE5){
								hh=P7_getPH(tC);
								P7_TPglide(tC.id,h,hh+hD);
							}
						}
					}
					else{
						tA[i].className='';
						document.getElementById(tA[i].p7tpn[1]).className='';
						if(tC){
							tC.style.display="none";
						}
					}
				}
			}
		}
	}
	if(typeof(P7_colH2)=='function'){
		P7_colH2();
	}
	if(typeof(P7_colH)=='function'){
		P7_colH();
