// JavaScript Document




/**
* runs once the page is loaded
*/
jQuery(document).ready(
     function(){

         jQuery(".xnav img").hover(
           function()
           {
            this.src = this.src.replace(".gif","-active.gif");
           },
           function()
           {
            this.src = this.src.replace("-active.gif",".gif");
           }
          );

     }
 );


jQuery(document).ready(
     function(){

          jQuery(".hp-cta img").hover(
           function()
           {
            this.src = this.src.replace(".gif","-hover.gif");
           },
           function()
           {
            this.src = this.src.replace("-hover.gif",".gif");
           }
          );

     }
 );
