// JavaScript Document
function showHide(id){
	if(document.getElementById(id).style.display == 'none'){	
		document.getElementById(id).style.display = '';
		document.getElementById(id+'_image').src = 'http://www.srdc.msstate.edu/ecommerce/images/lc_dropdown_side.gif';
	} else {
		document.getElementById(id).style.display = 'none';
		document.getElementById(id+'_image').src = 'http://www.srdc.msstate.edu/ecommerce/images/lc_dropdown_down.gif';
	}
}
function showAll(array){
	var lengthvar = array.length + 2;
	if(document.getElementById(array[0]).style.display == 'none'){
		for (i=0;i<lengthvar;i++){
			document.getElementById(array[i]).style.display = '';
			document.getElementById(array[i]+'_image').src = 'http://www.srdc.msstate.edu/ecommerce/images/lc_dropdown_side.gif';
		}
	} else {
		for (i=0;i<lengthvar+2;i++){
			document.getElementById(array[i]).style.display = 'none';
			document.getElementById(array[i]+'_image').src = 'http://www.srdc.msstate.edu/ecommerce/images/lc_dropdown_down.gif';
		}
	}
}

function noneDisplayed(array){
	var myBool = 1;
	for (i=0;i<array.length;i++){
		if(document.getElementById(array[i]).style.display == ''){
			document.write(array[i]+" : '"+ document.getElementById(array[i]).style.display +"';<br> ");
			myBool = 0;
		}
	}
	return myBool;
}
