function hide(id){
	jQuery('#'+id).hide();
}

function fadeOutAlert(id){
	timer = setTimeout("doFadeAlert('"+id+"')",10000);
}

function doFadeAlert(id){
	jQuery(id).fadeOut('fast');
	jQuery(id).addClass('hide');
}
		
function showConfirm(){
	jQuery("#feedback").removeClass('hide');

}

		
		
