//Function to add hover rules to buttons on the website
$(document).ready(
    function addButtonListeners(){
        $(".bodyButtons").hover(
            //hover over action
            function(){
                $(this).find(".bodyButtonImage").hide();        //Hide the non-hover image
                $(this).find(".bodyButtonImageHover").show();   //Show the hover image
            },
            //hover out actions
            function(){
                $(this).find(".bodyButtonImageHover").hide();   //Hide the hover image
                $(this).find(".bodyButtonImage").show();        //Show the non-hover image
            }
        );
    }
);