jQuery(document).ready(
    function(){


        jQuery(".icons input, .icons img").hover(
            function()
            {
                this.src = this.src.replace(".jpg","-hover.jpg");
            },
            function()
            {
                this.src = this.src.replace("-hover.jpg",".jpg");
            }
            );


    }
    );

