﻿
/// Manages collapsing and expanding sections
function toggleSection(imgID,divID) 
{
	// Show/hide section
	jQuery("#"+divID).toggle();

	// Change expand icon
	var img=jQuery("#"+imgID);
	if(img.length>0)
	{
		if(jQuery("#"+divID+":first:visible").length==0)
			img[0].src=img[0].src.replace("/min.gif","/max.gif")
		else
			img[0].src=img[0].src.replace("/max.gif","/min.gif")
	}
}

