$(function() {
	$("input").focus(function() {
		$("label[for='" + this.id + "']").hide();
	}).blur(function() {
		if( this.value.length == 0 ) {
			$("label[for='" + this.id + "']").show();
		}
	});

	$("select").change(function() {
		if( this.value.length == 0 ) {
			$("label[for='" + this.id + "']").show();
		}
		else {
			$("label[for='" + this.id + "']").hide();
		}
	});

	$("a[href^='http://']").click(function() {
		window.open( this.href );
		return false;
	});

	$("button").click( function() {
		this.form.submit();
	});
});