﻿jQuery(document).ready(function() {
    $(".nav").superfish({
        animation: { opacity: "show", height: "show" },
        speed: 5,
        delay: 100
    });

    $('#quickSearch').autofill({
        width: 160,
        handler: 'QuickSearch.svc/Search',
        onSelect: function(e, item, formatted) {  
            if (item.Type == 'L')
                location.href = 'detail.aspx?id='+item.Value;
            else if (item.Type == 'A' && item.Value>0)
                location.href = 'agent_detail.aspx?agentid='+item.Value;
            else if (item.Type == 'B' && item.Value>0)
                location.href = 'search.aspx?buid='+item.Value;
        },
    });

    $('.go').click(function(event){
        $('.ac_results ul li:first').click();
        event.preventDefault();
    });

    $('img.result-thumb').preload({
        placeholder: 'img/no_pic.jpg',
        notFound: 'img/no_pic.jpg'
    });

});

