$(document).ready(function() {
	$("#newsletter_link").hover(
		function() {
			$('#newsletter_circle img').stop().animate({opacity: 1, width: 108, height: 33, left: 0, top: 0}, 200);
		},
		function() {
			$('#newsletter_circle img').stop().animate({opacity: 0, width: 90, height: 25, left: 5, top: 5}, 200);
		}
	);

	$('#newsletter_circle img').stop().animate({opacity: 0, width: 90, height: 25, left: 5, top: 5}, 200);
});


