$(document).ready(function(){

	$("#assinatura").hover(function() {
		$("#assinatura img , .msg_block").stop()
			.animate({
				width: '70px',
				height: '70px'
			}, 500);
		} , function() {
		$("#assinatura img").stop()
			.animate({
				width: '25px',
				height: '27px'
			}, 220);
		$(".msg_block").stop()
			.animate({
				width: '25px',
				height: '25px'
			}, 200);
	});
	
});
