$(function() {

	$(".expando").toggle(function() {
		$(this).find("img").attr("src", "/static/img/plus.gif");
		$(this).next().hide();
	}, function() {
		$(this).find("img").attr("src", "/static/img/minus.gif");
		$(this).next().show();
	});

	$("input").focus(function() {
		if( this.value == this.defaultValue ) {
			this.value = "";
		}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	});
	
});

