﻿/// <reference path="~/scripts/jquery-1.3.2.js" />
$(document).ready(function() {
	$(".parent img").toggle(
	function() {
		$(this).attr("src", "/images/expander-reset-green.png");
		$("ul", $(this).parent("li")[0]).slideDown();
	},
	function() {
		$(this).attr("src", "/images/expander-green.png");
		$("ul", $(this).parent("li")[0]).slideUp();
	});
});
