﻿$(document).ready(function() {

    $("#navServices").hover(function() {
        $(this).attr("src", "/images/Services-Nav-over.png");
    }, function() {
        $(this).attr("src", "/images/Services-Nav.png");
    });

    $("#navHomeowners").hover(function() {
        $(this).attr("src", "/images/Homeowners-Nav-over.png");
    }, function() {
        $(this).attr("src", "/images/Homeowners-Nav.png");
    });

    $("#navCareers").hover(function() {
        $(this).attr("src", "/images/Careers-Nav-over.png");
    }, function() {
        $(this).attr("src", "/images/Careers-Nav.png");
    });

    $("#navAboutus").hover(function() {
        $(this).attr("src", "/images/Aboutus-Nav-over.png");
    }, function() {
        $(this).attr("src", "/images/Aboutus-Nav.png");
    });

    $("#navVendors").hover(function() {
        $(this).attr("src", "/images/Vendors-nav-over.png");
    }, function() {
        $(this).attr("src", "/images/Vendors-nav.png");
    });

});
