var combodropimage=''; //path to "drop down" image
var combodropoffsetY=42; //offset of drop down menu vertically from default location (in px)
var combozindex=100;
var menucount=0;
if (combodropimage!="")
	combodropimage='<img class="downimage" src="'+combodropimage+'" title="Select an option" />';
function dhtmlselect(selectid, count){
    menucount++;
    target='department-'+selectid;
    var deptlink=document.getElementById(target).href;
	var selectbox=document.getElementById(selectid);
	document.write('<td><div id="dhtml_'+count+'" class="dhtmlselect"><a class="deptlink" href="'+deptlink+'">'+selectid+'</a><div class="dropdown">');
	for (var i=0; i<selectbox.options.length; i++)
		document.write('<a href="'+selectbox.options[i].value+'">'+selectbox.options[i].text+'</a>');
	document.write('</div></div></td>');
	selectbox.style.display="none";
	var dhtmlselectbox=document.getElementById("dhtml_"+count);
	dhtmlselectbox.style.zIndex=combozindex;
	combozindex--;	
	dhtmlselectbox.onmouseover=function(){
		this.getElementsByTagName("div")[0].style.display="block";
		this.style.backgroundPosition="0px -47px";
	}
	dhtmlselectbox.onmouseout=function(){
		this.getElementsByTagName("div")[0].style.display="none";
		this.style.backgroundPosition="0px 0px";
	}

}