$(document).ready(function(){
	$(".ip_name").editInPlace({
		url: "http://www.ipnotebook.net/includes/update_ip_name.php",
		saving_text: "Saving...",
		show_buttons: false,
		default_text: "[ Click to Add Name ]"
	});
	$(".ip_info").tooltip({ offset: [5, 40], relative: "false"});
});

$(function() {
$(".delbutton").click(function(){

//Save the link in a variable called element
var element = $(this);

//Find the id of the link that was clicked
var del_id = element.attr("id");

//Built a url to send
var info = 'id=' + del_id;
 if(confirm("Sure you want to delete this IP? There is NO undo!"))
		  {
			$.ajax({
			type: "POST",
			url: "./includes/delete_user_ip.php",
			data: info,
			success: function(){
			}
			});

         $(this).parents(".record").animate({ backgroundColor: "#fbc7c7" }, "fast")
		.animate({ opacity: "hide" }, "slow");

 }

return false;

});

});
$(document).ready(function() {
	$(".loginWindow").overlay();
});
