﻿$(document).ready(function() {
    if (!$('#ContactUs'))
        return;

    $('#ContactUs').toggle(function() {
    $('#ContactUsForm:hidden').slideDown();
    $('#ContactUs')[0].blur();
        $(this).addClass('on');
        $("#ContactUs").html("Cancel ");
        $("#promo span").fadeTo("slow", 0.25, function() {
            $("#txtName")[0].focus();
        });
        return false;
    },
			function() {
    $('#ContactUsForm:visible').slideUp();
    $('#ContactUs')[0].blur();
			    $(this).removeClass('on');
			    $("#promo span").fadeTo("slow", 1.0);
			    $("#ContactUs").html("Contact Us ");
			    return false;
			}
		);
}
);
