$(document).ready(function() {
	$('#leftMenu a img').hover(function() {
		var newsource = $(this).attr('src');
		var newsource = newsource.replace(/.gif/gi, '-roll.gif');
		$(this).attr('src', newsource);
	},
	function() {
		var source = $(this).attr('src');
		var source = source.replace(/-roll.gif/gi, '.gif');
		$(this).attr('src', source);
	});
	$('.closed .expandCollapse').live("click", function() {
		var thislist = '#' + $(this).parent().attr('id');
		$('.open').animate( { height : "21px" }, 500, function() {
			$('.open').addClass("closed").removeClass("open");
		});
		$(thislist).css('height','auto');
		var fullHeight = $(this).parent().height();
		$(thislist).css('height','21px');
		$(thislist).animate( { height : fullHeight + "px" }, 500, function() {
			$(thislist).removeClass("closed");
			$(thislist).addClass("open");
		});
	});
	$('.open .expandCollapse').live("click", function() {
		$(this).parent().animate( { height : "21px" }, 500, function() {
			$(this).removeClass("open").addClass("closed");
		});
	});
});
