 /**
 * Copyright (c) 2011 Faculty of Environmental Studies, York University.  All rights reserved.
 * http://www.yorku.ca/fes/
 *
 * The use, duplication, redistribution or modification of any code in this file,
 * in whole or in part, is strictly prohibited.
 *
 * @author		Brenn Kha, bnkha @ yorku . ca
 * @version		Version 1.0.0, 2011-03-10 13:04:15
 */

$(document).ready(function()
{
	//
	$("table td > p:last-child").css("margin-bottom", "0");

	// @note: Browser detection may be deprecated in future jQuery releases
	if ($.browser.webkit)
	{
		$("ul.c-commands-inline li").css("display", "inline-block");
	}
	if ($.browser.msie && $.browser.version == "7.0")
	{
		$("#t-content-main > p:first-child, #t-content-left > p:first-child, #t-content-right > p:first-child").css("margin-top", "0");
	}
});

