$(document).ready( 
	function() {
		$("#sos a img").hover(
			function()
			{
				this.src = this.src.replace(".gif","-hover.gif");
			},
			function()
			{
				this.src = this.src.replace("-hover.gif",".gif");
			}
		);
	}
);