function hideFeedback() {
	$("p#feedback").animate({ opacity: 0 }, 500 );
}


$(function(){

		// form feedback
	$("#logout").click(function(){
		return confirm("Are you sure you want to logout?");
	})
	setTimeout ( "hideFeedback()", 2000 );

	// prevent double-submit
	$("form").submit(function(){
		$("#submitButton").attr({value:"Please wait",disabled:"disabled"});
	})

	// deleting a record
	$(".deleteLink").click(function(){
		return confirm("Are you sure you wish to delete this item?\nClick OK to delete or Cancel to keep");
	})

	$(".deleteFolder").click(function(){
		return confirm("Are you sure you wish to delete this folder? All contained files will be deleted.\nClick OK to delete or Cancel to keep");
	})

	$(".deleteFile").click(function(){
		return confirm("Are you sure you wish to delete this file?\nClick OK to delete or Cancel to keep");
	})


});