$(document).ready(function(){
	$("img.logoabnt").mouseover(function(){
		$(this).animate({marginTop: -10, marginLeft: -10, width: 130, height: 130}, 100);
	});
	$("img.logoabnt").mouseout(function(){
		$(this).animate({marginTop: 0, marginLeft: 0, width: 105, height: 105}, 100);
	});
});
