//Function to add hover rules to vertical rollovers on the website
$(document).ready(
    function addTabListeners(){
        $(".verticalRolloverItem").hover(
            function(){
            //hover over action
                $(this).find(".verticalRolloverImage").hide();               //Hide the non-hover image
                $(this).find(".verticalRolloverImageHover").show();          //Show the hover image
            },
            //hover out actions
            function(){
                $(this).find(".verticalRolloverImageHover").hide();          //Hide the hover image
                $(this).find(".verticalRolloverImage").show();               //Show the non-hover image
            }
        );
    }
);