function arrows() {
	$("a.arrow").after("<img class='arrow' src='/images/arrow.png' />");
}

function email() {
	$("input#email").val("Email");
	$("input#email").focus(function(){
		$(this).val("");
	});
}

function otherFieldShow() {
	if( $("input#where-04").attr("checked") ) {
		$("div#otherRow").slideDown(300);
	}
	else {
		$("div#otherRow").hide();
	}
}

function otherFieldContent() {
	$("div#otherRow input#otherField").css({color:"#999999"});
	$("div#otherRow input#otherField").val("Other");
	$("div#otherRow input#otherField").focus(function(){
		if ( $("div#otherRow input#otherField").val("Other") ) {
			$("div#otherRow input#otherField").css({color:"#000000"});
			$("div#otherRow input#otherField").val("");
		}
	});
}
