$(document).ready(function()
{
	// ==================================================================================================== 
	$("#mensaje").fadeIn(1000);
	$("#mensaje").fadeOut(1000);
	
	// ==================================================================================================== 
	$(".ver").click(function(e)
	{
		$("#popup #texto").text($(this).parent().attr("id"));
		$("#popup").css("left", e.pageX);
		$("#popup").css("top", e.pageY);
		$("#popup").fadeIn("slow");
	});

	$("#cerrar").click(function(e)
	{
		$("#popup").fadeOut("slow");
	});
	
	// ==================================================================================================== 
	$(".imprimir")
		.attr( "href", "javascript:void( 0 )" )
		.click(
			function(){
			// Print the DIV.
			$( ".printable" ).print();
			 

			// Cancel click event.
			return( false );
			}
		)
	;		

});

