$(document).ready(function(){
	$(".providerLightboxLink").hover(function(){
		$(this).css("textDecoration", "underline");
		}, function(){
		$(this).css("textDecoration", "none");
	});
	$(".providerLightboxLink").css('cursor', 'pointer');
	$(".providerLightboxLink").click(function(){
		id = this.id.substring(7);		
		$.ajax({
			type: "POST",
			url: "/scripts/getSpecialistInfo.php",
			data: "id="+id,
			success: function(msg){
				$("body").append(msg);
				$(".dialogBox").dialog({									   
					modal: true,
					width: 700,
					height: 350,
					close: function(){
						$(".dialogBox").dialog('destroy');	
						$(".dialogBox").remove();
					}
				});
			}
		});
	});
});