
	var fullPath = "http://www.drought.gov";

	function showHideDivById(elementid,img) {
//alert('elementid = '+elementid+'  img = '+img);
		if (document.getElementById(elementid).style.display == 'none'){
			document.getElementById(elementid).style.display = '';
			document.getElementById(img).src = fullPath + '/imageserver/plumtree/portal/public/img/icon_arrow_expand.gif';
		} else {
			document.getElementById(elementid).style.display = 'none';
			document.getElementById(img).src = fullPath + '/imageserver/plumtree/portal/public/img/icon_arrow_collapse.gif';
		}
	}

	
	function collapseAllDivs(totalDivs,pid) {
		for(var i=1;i<totalDivs+1;i++){
			document.getElementById('div' + i + '_' + pid).style.display = 'none';
			document.getElementById('img' + i + '_' + pid).src = fullPath + '/imageserver/plumtree/portal/public/img/icon_arrow_collapse.gif';
		}
	}	
		
	function expandAllDivs(totalDivs,pid) {
				
		for(var i=1;i<totalDivs+1;i++){
			document.getElementById('div' + i + '_' + pid).style.display = '';
			document.getElementById('img' + i + '_' + pid).src = fullPath + '/imageserver/plumtree/portal/public/img/icon_arrow_expand.gif';
		}
	}

