$(document).ready(function() {
	$('.comentario').click(function(){
		posicion = $(this).offset();
		$("#formflotante").css("left", posicion.left+300);
		$("#formflotante").css("top", posicion.top-280);
		$('#formflotante').show();
	  	//$('#formflotante').fadeIn("fast");
	});
	$('.sabermas').click(function(){
		posicion = $(this).offset();
		$("#formflotante").css("left", posicion.left-280);
		$("#formflotante").css("top", posicion.top-229);
		$('#formflotante').show();
	  	//$('#formflotante').fadeIn("fast");
	});
	$('#close').click(function(){
		$('#formflotante').hide();
		//$("#formflotante").fadeOut("medium");
	});
});
