function toggleTBody(tbodyId, spanId)
{		
	if($("#"+tbodyId).css("display") !== "none") 
	{	
		$("#"+tbodyId).fadeOut(400);
		$("#"+spanId).text("Show");
		$("#"+spanId).removeClass().addClass("showDetails");
	}
	else
	{			
		$("#"+tbodyId).fadeIn(400);
		$("#"+spanId).text("Hide");
		$("#"+spanId).removeClass().addClass("hideDetails");	
	}
}	

$(document).ready(function() {		
	var len = $("#tbodyControls tr").children().length; //total columns
	var imageWidth = (700 - (16 * len)) / len; //Scales image by

	$("table tr:first td").css("vertical-align","bottom");

	//Set all images to same width so they do not blow out of #content div
	$("table tr:first td img").each(function (i) {
		if ($(this).width() > imageWidth)
		{
			$("table img").css("width",imageWidth + "px");
		}
	});	
});