// JavaScript Document

/**
* runs once the page is loaded
*/
jQuery(document).ready(
    function(){

        //alert( 'here' );

        jQuery("div.xnav img, div.int_cta img").hover(
            function()
            {
                this.src = this.src.replace(".gif","-hover.gif");
            },
            function()
            {
                this.src = this.src.replace("-hover.gif",".gif");
            }
            );

    }
    );
