jQuery(document).ready(function() {
	$('span.teaserbutton').hover(
		function(){ $(this).stop().animate({"opacity": "0"}, "normal"); },
		function(){ $(this).stop().animate({"opacity": "1"}, "slow"); }
	).html('');
});
