// JavaScript Document




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

          //alert( 'here' );

          jQuery(".menu a img").hover(
           function()
           {
            this.src = this.src.replace(".jpg","-hv.jpg");
           },
           function()
           {
            this.src = this.src.replace("-hv.jpg",".jpg");
           }
          );

     }
 );




jQuery(document).ready(
     function(){

          //alert( 'here' );

          jQuery(".links img").hover(
           function()
           {
            this.src = this.src.replace(".gif","-hv.gif");
           },
           function()
           {
            this.src = this.src.replace("-hv.gif",".gif");
           }
          );

     }
 );
