/*
 * jQuery 1.2.3 - New Wave Javascript
 *
 * Copyright (c) 2008 John Resig (jquery.com)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * $Date: 2008-02-06 00:21:25 -0500 (Wed, 06 Feb 2008) $
 * $Rev: 4663 $
 */


$(document).ready(function(){
	$("a.external").attr("target", "_blank");
	$("#email").click(function(){
		$(this).val("");
	});
	$("#email").blur(function(){
		if($(this).val() == "") $(this).val("Email Address");
	});
});



