$(document).ready(function() {

	$(".img-button").hover(
		function () {
			$(this).attr('src', $(this).attr('src').replace(/\_sbw\./, '_sr.'));
		},

		function () {
			$(this).attr('src', $(this).attr('src').replace(/\_sr\./, '_sbw.'));
		}
	);


});
