$(document).ready(function () {
	$("#pacotes 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();
	});
    $("#pacotes img").each(function () {
        var src = $(this).attr('src');
        var img = new Image();
        img.src = src.replace('_thumb','');
    });
});
