			////////// BEGIN: EXPAND/COLLAPSE Functions //////////
			var javascriptCounter = 0; //added to create a counter so that we can automatically get the number of values required for expansion/contraction. var incremented as required in lastr section
			function display(x){   //x   =   item_1
				var elm_short;
				elm_short = document.getElementById(x + '_short');   //  item_1_short
				var elm_long;
				elm_long = document.getElementById(x + '_long');   //  item_1_long
				
				var elm_linkshort;
				elm_linkshort = document.getElementById(x + '_linkshort');   //  item_1_linkshort
				var elm_linklong;
				elm_linklong = document.getElementById(x + '_linklong');   //  item_1_linklong
				
				var display_short = elm_short.style.display;
				var display_long = elm_long.style.display;
				
				var display_linkshort = elm_linkshort.style.display;
				var display_linklong = elm_linklong.style.display;
				
				if(display_short == 'inline')
				{
					elm_short.style.display = "none";
					elm_long.style.display = "inline";
					elm_linkshort.style.display = "none";
					elm_linklong.style.display = "inline";
				}
				else
				{
					elm_short.style.display = "inline";
					elm_long.style.display = "none";
					elm_linkshort.style.display = "inline";
					elm_linklong.style.display = "none";
				}// end display
			}//function
			
			function expand_all(x)
			{
				for(var i = 1; i < x + 1; i++)
				{
					elm_short = document.getElementById('item_' + i + '_short').style.display = "none";
					elm_long = document.getElementById('item_' + i + '_long').style.display = "inline";
					elm_linkshort = document.getElementById('item_' + i + '_linkshort').style.display = "none";
					elm_linklong = document.getElementById('item_' + i + '_linklong').style.display = "inline";
				}
			}// end expand_all

			function shrink_all(x)
			{
				for(var i = 1; i < x + 1; i++)
				{
					elm_short = document.getElementById('item_' + i + '_short').style.display = "inline";
					elm_long = document.getElementById('item_' + i + '_long').style.display = "none";
					elm_linkshort = document.getElementById('item_' + i + '_linkshort').style.display = "inline";
					elm_linklong = document.getElementById('item_' + i + '_linklong').style.display = "none";
				}
			}// end shrink_all
			////////// END: EXPAND/COLLAPSE Functions //////////
