$(function () 
{
	$('#errorMessage').hide().fadeIn('slow');
	$('#errorMessage .close').click(function() {
		$(this).parent().fadeOut('slow', function() { $(this).remove(); });
	});
});
function killIt(item)
{
	$('#'+item).fadeOut(1000);
}
