$(function(){
	$('#surveyTeaser h2 a').mouseover(function(){
		$('img', this).attr('src','/site/images/btn_thanks_hover.png');
	}).mouseout(function(){
		$('img', this).attr('src','/site/images/btn_thanks.png');	
	});
});

