function displaydhmenu(strdiv,intdiv,int_total) {
	for(ix=1;ix<=int_total;ix++) {
		if(ix==intdiv) {
			document.getElementById(strdiv+"title"+ix).src='/images/index/dhtitle'+ix+'1.jpg';
			document.getElementById(strdiv+"content"+ix).style.display="block";	
		} else {
			//alert(strdiv+"title"+ix);
			//alert(document.getElementById(strdiv+"title"+ix));
			if(document.getElementById(strdiv+"title"+ix).src!='/images/index/dhtitle'+ix+'0.jpg') {
			document.getElementById(strdiv+"title"+ix).src='/images/index/dhtitle'+ix+'0.jpg';
			document.getElementById(strdiv+"content"+ix).style.display = "none";
		}
		}
		
	}
}