$(document).ready(function(){
	$("#toggle").click(function(){
		if ($("#comment_sec").is(":hidden")){
			$("#comment_sec").slideDown("slow");
			$("textarea:text:first").focus();
		}
		else{
			$("#comment_sec").slideUp("slow");
		}
	});
});
$(document).ready(function(){
	$("#toggle2").click(function(){
		if ($("#comment_sec").is(":hidden")){
			$("#comment_sec").slideDown("slow");
			$("textarea:text:first").focus();
		}
		else{
			$("#comment_sec").slideUp("slow");
		}
	});
});
function closeForm(){
	$("#messageSent").show("slow");
	setTimeout('$("#messageSent").hide();$("#comment_sec").slideUp("slow")', 2000);
}

function clearDefaultText(e) {
    var target = window.event ? window.event.srcElement : e ? e.target : null;
    if (!target) return;
    
    if (target.value == target.defaultText) {
        target.value = '';
    }
}

function replaceDefaultText(e) {
    var target = window.event ? window.event.srcElement : e ? e.target : null;
    if (!target) return;
    
    if (target.value == '' && target.defaultText) {
        target.value = target.defaultText;
    }
}