
$(document).ready( function()
{
    $('#list_email').focus( function()
    {
        $(this).next('div').slideDown('slow');
        $(this).prev('span').html('Your Email Address');
    });
    
    /**
     * Inventory Search JavaScript
     */
    $('#search_type').change( function()
    {
        $('select[name*="search_options"]').hide();
        if($(this).val() == '')
        {
            $('#search_options').show();
        }
        else
        {
            $('#search_options_' + $(this).val()).show();
        }
    });
    
    $('select[name*="search_options"]').hide();
    if($('#search_type').val() == '') 
    {
        $('#search_options').show();
    }
    else
    {
        $('#search_options_' + $('#search_type').val()).show();
    }
});
