// JavaScript Document
$(document).ready(function() { 
	
	
	$(".dicas a").click(function(){
		
			var id = $(this).attr("id");
			
			$("#overlay").css({'width': $(window).width(), 'height': $(document).height(), 'opacity': 0.4});
			$("#overlay").show();
				
				$.ajax({
			   type: "GET",
			   url: "dicas_ler.asp",
			   data: "id="+id,
			   success: function(data){
						$("#x_content").show();
						$("#close").show();
						$("#x_content").css({'opacity': 100});
						$("#x_content").html(data);
						$("#overlay").click(function(){
							$("#x_content").hide();
							$("#overlay").hide();
							$("#close").hide();
						});
						$("#close").click(function(){
							$("#x_content").hide();
							$("#overlay").hide();
							$("#close").hide();
						});
				   }
			   
			   });
			$("#loading").bind("ajaxSend", function(){$(this).show();}).bind("ajaxComplete", function(){$(this).hide();});
		}
	);
});