
$(document).ready(function(){
	$('.FF_welcome a').hover(
	  function() {
		  $(this).find('img').attr('src', $(this).find('img').attr('src').replace(/\.png/, '_hover.png'));
	  },
	  function() {
		  $(this).find('img').attr('src', $(this).find('img').attr('src').replace(/\_hover\.png/, '.png'));
	  }
	);
});



