jQuery(document).ready(function(){

     jQuery("#home-callouts-finding-joy").hover(
        function() {
            jQuery("#home-callouts-finding-joy a").css('text-decoration', 'underline');
        },
        function() {
            jQuery("#home-callouts-finding-joy a").css('text-decoration', 'none');

        });

     jQuery("#home-callouts-sharing-joy").hover(
        function() {
            jQuery("#home-callouts-sharing-joy a").css('text-decoration', 'underline');
        },
        function() {
            jQuery("#home-callouts-sharing-joy a").css('text-decoration', 'none');

        });

    jQuery("#home-callouts-finding-joy").bind('click',function() {
       window.location = jQuery("#home-callouts-finding-joy a").attr('href');
    });

    jQuery("#home-callouts-sharing-joy").click(function() {
       window.location = jQuery("#home-callouts-sharing-joy a").attr('href');
    });

});
