menuhover = new Image();
menuhover.src = "/wp-content/themes/bps/images/menu-item-bg-hover.gif";

jQuery(document).ready(function() {
    jQuery('.where-heard select').change(function() {
        if (jQuery('.where-heard option:selected').val() == "Other (state below)") {
            jQuery('#otherTextBoxHidden').show();
        }
        else {
            jQuery('#otherTextBoxHidden input').val('');
            jQuery('#otherTextBoxHidden').hide();
        }
    });
});
