$(document).ready(function() {
	var clienteH = 125;
	var clienteW = 140;
	var imgH = parseInt($('.attachment-100x100').height());
	var imgW = parseInt($('.attachment-100x100').width());
	
	$('.attachment-100x100').css({marginLeft: (clienteW - imgW) / 2, marginTop: (clienteH - imgH) / 2});
	
	$('.cliente').mouseover(function() {
		var postID = $(this).attr('id');
		$('#' + postID + ' .ifo-cliente').addClass('block');
	});
	
	$('.cliente').mouseout(function() {
		var postID = $(this).attr('id');
		$('#' + postID + ' .ifo-cliente').removeClass('block');
	});
});
