﻿$(document).ready(function(){
    liveSearchActions();
});

function liveSearchActions(){
    $("#pcrSearchByAddress").live("click",function(){
        $(this).fadeOut("fast",function(){
            $(".item-address").fadeIn("slow");
        });
        return false;
    });
    $(".quicksearch-submit a").live("click",function(){
        document.ListingQuickSearch9.submit();
    });
    $("#typeLotsLand").live("click",function(){
        $("#qsMinBeds").children("option:contains('Any')").attr("selected",true);
        $("#qsMinBaths").children("option:contains('Any')").attr("selected",true);
        $(".qs-nolots").fadeOut("slow");
    });
    $(".typeOther").live("click",function(){
        $(".qs-nolots").fadeIn("slow");
    });
}
