// JavaScript Document




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

          //alert( 'here' );

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

     }
 );

