function setActiveTab(arg) {
    
    p = arg.getParent().getParent().getParent();
    me = arg.getParent().nextSibling;
    do{
	
	if (me.nodeName == 'DIV') {
		if (me.getAttribute("class") == "tabs floatbox") continue;
		break;
	}
	
	
    } while(me =  me.nextSibling)
    d = p.firstChild;
    
     do {
		 if (d.nodeName != 'DIV') continue;
		 if (d.getAttribute("class") == "tabs floatbox") continue;
		 e = d.firstChild;
	 do {
	     if (e.nodeName != 'DIV') continue;
	     e.setAttribute('class', 'info_content hideme');
	     
	 } while(e = e.nextSibling);
     }while(d = d.nextSibling);

     me.setAttribute('class', 'info_content');	 

    return;
}

function setTargetExt() {
	jQuery("a[href*='.pdf']").attr("target", "_blank");
}
