    /* ================================================================== *\
        Dothan MLS Search Tool 2
        version 2.0 // 18 Feb 2011
        
        This file contains the custom JavaScript for portions of the
        DMLS Search Tool 2.
    \* ================================================================== */
    
    $(document).ready(function(){
        $(".dmls-hover").hover(
            function(){
                window.icon = $(this).attr("src");
                var list = icon.split(".png");
                var down = list[0] + '-dn.png';
                $(this).attr("src", down);
            }, function(){
                $(this).attr("src", window.icon);
            }
        );
    });
