// JavaScript Document




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

          //alert( 'here' );

          jQuery(".xnav img").hover(
           function()
           {
            this.src = this.src.replace(".jpg","-active.jpg");
           },
           function()
           {
            this.src = this.src.replace("-active.jpg",".jpg");
           }
          );

     }
 );




