// JavaScript Document

/**
* runs once the page is loaded
*/

jQuery(document).ready(
    function(){

        jQuery(".xlogo img, .more img, .int_cta_btns img").hover(
            function()
            {
                this.src = this.src.replace(".jpg","-hover.jpg");
            },
            function()
            {
                this.src = this.src.replace("-hover.jpg",".jpg");
            }
            );


    }
    );


