$(document).ready(function () {
	$("#classificados li").hover(function () {
		var html = $(this).html();
		
		var $div = $("<div />").addClass('hover').html(html.replace('_thumb',''));
		
		var offset = $(this).offset();
		$div.css({left:offset.left - $(this).width() / 4, top:offset.top - $(this).height() / 4 })		
		$(this).prepend($div);
		$(this).find('.hover h5').show();
		$(this).find('.hover span').show();
	}, function () {
		$(this).find('.hover').remove();
	});
});
