$(document).ready(function() {



});

function togglePeople(id) {

	$("#linksMouseOver" + id).hide();
	$("#linksShow" + id).show();

	if($("#prompts" + id).is(":visible") && !($("#people" + id).is(":visible")))
		$("#prompts" + id).slideToggle();
	
	$("#people" + id).slideToggle("normal", function() {
	
		toggleTheLinks(id)
	
	});
	
}

function togglePrompts(id) {

	$("#linksMouseOver" + id).hide();
	$("#linksShow" + id).show();

	if($("#people" + id).is(":visible") && !($("#prompts" + id).is(":visible")))
		$("#people" + id).slideToggle();
	
	$("#prompts" + id).slideToggle("normal", function() {
	
		toggleTheLinks(id)
	
	
	});
	

}

function deleteBounce(id) {

	var response = confirm('Are you sure you want to delete this bounce? No more prompts will be sent and current replies will be deleted. This action cannot be undone!');
	
	if(response) {
	
		$.post("/ajax/delete_bounce", { bounce_id : id }, function(data) { });
		$("#bounce" + id).slideToggle();
	
	}
	
}

function toggleTheLinks(id) {

	// if either is open, keep these links open!
	
	if($("#prompts" + id).is(":visible") || $("#people" + id).is(":visible"))
	{
		
		$("#linksMouseOver" + id).hide();
		$("#linksShow" + id).show();
	
	}
	else
	{
	
		$("#linksShow" + id).hide();
		$("#linksMouseOver" + id).show();
	}

}