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");
	})

	// sIFR
	if(typeof sIFR == "function") {

		sIFR.replaceElement(named({sSelector:"#client", sColor: "#333333", sBgColor: "#f1f1f1", sFlashSrc:"/assets/font.swf",sWmode:"transparent"}));

	}

});