$(document).ready(function () {
	if ($("img.moreButton") != undefined) {
		$("img.moreButton").click(function () {
			if ($(this).attr("src") == "/images/less_button.png") {
				$(this).attr("src", "/images/more_button.png");
				$(this).parent().next("div.moreLess").hide();
			}
			else {
				$(this).attr("src", "/images/less_button.png");
				$(this).parent().next("div.moreLess").show();
			}
		});

		if (location.href.split("#").length == 1) {
			$("img.moreButton:eq(0)").attr("src", "/images/less_button.png");
			$("div.moreLess:eq(0)").show();
		}
	}


	if ($("img.PlusMinusButton") != undefined) {
		$("img.PlusMinusButton").click(function () {
			if ($(this).attr("src") == "/images/minus-2.gif") {
				$(this).attr("src", "/images/plus-2.gif");
				$(this).parent().parent().next("div.PlusContent").hide();
			}
			else {
				$(this).attr("src", "/images/minus-2.gif");
				$(this).parent().parent().next("div.PlusContent").show();
			}
		});

		if (location.href.split("#").length == 1) {
			$("img.PlusMinusButton:eq(0)").attr("src", "/images/minus-2.gif");
			$("img.PlusMinusButton:eq(0)").parent().parent().next("div.PlusContent").show();
		}
	}
});
