﻿// JScript File

$(document).ready(function() {

    //Dropdown SubNav
    
    $('.mainNav li a').hover(function() {
    
        $(this).parent().find('.subList').show();
     
        $(this).parent().hover(function() {
            $('a:first', this).addClass('selected');
        }, function(){
            $('a:first', this).removeClass('selected');
            $(this).parent().find('.subList').hide();
        });
    
    });
    
    // Remove Border
   
   $(".leftColumn div div:last-child, .rightColumn div div:last-child").css({'border-bottom' : 'none'});
   
   

});






    //<![CDATA[
$(function(){

    // gets rid of whitespace in the url in Neighborhoods.aspx
    
    $(".location").each(function(){
        var locUrl = ($("a", this).attr("href"));
        var locUrl=locUrl.replace(/ /g, "");
        $("a", this).attr("href", locUrl);
    });
 
});

    //]]>