<!--
// image rollover script
function rollover( e )
{
	var img_src = e.childNodes[0].src ;
	
	
	var img_split = img_src.split("_off") ;

	if ( img_split.length == 1 )
	{
		img_split = img_src.split("_on") ;
		e.childNodes[0].src = img_split[0] + '_off' + img_split[1] ;
	}
	else
	{
		e.childNodes[0].src = img_split[0] + '_on' + img_split[1] ;
	}
	
}


/*
//UNUSED DROP DOWN MENU SCRIPTING...

if (document.all && document.getElementById) {
	navRoot = document.getElementById("piNav");
	for (i=0; i<navRoot.childNodes.length; i++) {
	node = navRoot.childNodes[i];
	if (node.nodeName=="DIV") {
	node.onmouseover=function() {
	this.className+=" over";
	  }
	  node.onmouseout=function() {
	  this.className=this.className.replace(" over", "");
	   }
	   }
	  }
	 }

//FINISHED WITH UNUSED DROP DOWN MENU SCRIPTING...
*/

function toggle(numb,tab,inte){
	var i = 1;
	while(i <= inte){
		if(numb!=1){
			document.getElementById(tab+'1').className='null';
		}
		if(numb == i){
			document.getElementById(tab+i).className='selected';
			document.getElementById("div_"+tab+i).style.display="block";
		} else {
			document.getElementById(tab+i).className='null';
			document.getElementById("div_"+tab+i).style.display="none";
		}
		i++;
	}
}


function clear_search_txt(q){
if(q == '- Search Terms -'){
document.nav_search.q.value = '';
}}

function make_search_txt(q){
if(q == '' || q == null){
document.nav_search.q.value = '- Search Terms -';
}}



function clear_search_txt_ft(q){
if(q == '- Search Terms -'){
document.ft_search.q.value = '';
}}

function make_search_txt_ft(q){
if(q == '' || q == null){
document.ft_search.q.value = '- Search Terms -';
}}

function do_search(){
var query = document.nav_search.q.value;
if(query != '- Search Terms -' && query != '' && query != null){
parent.location.href='http://search.yahoo.com/search?p=site%3Atheumpquapost.com+' + query + '&fr=yfp-t-501&toggle=1&cop=mss&ei=UTF-8';
}else{
alert('no search term given... send to advanced search page...');
}
return false;
}

function do_search_footer(){
var query = document.ft_search.q.value;
if(query != '- Search Terms -' && query != '' && query != null){
parent.location.href='http://search.yahoo.com/search?p=site%3Atheumpquapost.com+' + query + '&fr=yfp-t-501&toggle=1&cop=mss&ei=UTF-8';
}else{
alert('no search term given... send to advanced search page...');
}
return false;
}


function toggleDis(){
	if(document.getElementById('comments_disclaimer').style.display == 'none'){
		document.getElementById('comments_disclaimer').style.display = 'block';
	}else{
		document.getElementById('comments_disclaimer').style.display = 'none';
	}
}
//-->