
$(document).ready( function() {
    /*var zip_options = $('form[name=search2009] input[name=zip_options]');
    zip_options.attr('disabled', 'disabled');
    //zip_options.parent().hide();
    
    $('form[name=search2009] input[name=zip]').keyup( function() {
        var zip_code = $(this).val()
        
        if(zip_code.length > 0) {
            zip_options.attr('disabled', '');
            //$(this).parent().next().show();
        }
        else if(zip_options.attr('disabled') != 'disabled') {
            zip_options.attr('disabled', 'disabled');
            //$(this).parent().next().hide();
        }
    });
    */
    
    $('form[name="search2009"] input').keypress( function(e)
    {
        if(e.keyCode == 13)
        {
            submitform();
            return false;
        }
        
        return true;
    });
    
    $(document).aTitle({
        startdom: 'body',
        classname: 'note',
        transition: '0',
        left_adjustment: 20,
        top_adjustment: 20,
        opacity: 1,
        defautstyle: false
    });
});