﻿(function ($) {

	/*
	* Auto-expand the "What is being done?" section of Project Information when any "Current Work" pages are being shown.
	* Can't be done server-side.
	*/
	$(function () {
		var cwul = $("#left_column_content .home_links a[href='/ProjectInformation/CurrentWork/Default.aspx'] + ul");
		if (cwul.is(":visible")) {
			var wibdul = $("#left_column_content .home_links a[href='/ProjectInformation/ProblemsSolutions/Default.aspx'] + ul");
			wibdul.show();
		}
	});

})(jQuery);

