﻿$(function() {
    $("#programLogos .logoLeft").hover(function() {
        $(".descBox p").text('Click here to learn more about Meals on Wheels of San Antonio.');
        $(".descArrow img").removeClass();
        $(".descArrow img").addClass("arrowrightleft");
        $("#programLogos .logoLeft").attr('title', 'Meals on Wheels');
    });
});

$(function() {
    $("#programLogos .logoMiddle").hover(function() {
        $(".descBox p").text('Have a loved one suffering from Alzheimer’s? Click here to learn more.');
        $(".descArrow img").removeClass();
        $(".descArrow img").addClass("arrowmid");
        $("#programLogos .logoMiddle").attr('title', 'Grace Place');
    });
});

$(function() {
    $("#programLogos .logoRight").hover(function() {
        $(".descBox p").text('Over 55 years old and looking to make a friend?  Click here to learn more.');
        $(".descArrow img").removeClass();
        $(".descArrow img").addClass("arrowright");
        $("#programLogos .logoRight").attr('title', 'Senior Companion Program');
    });
});
