var top_msg = {
	displayError : function(msg){
		var elem = $('<div>',{
			id: 'top_error',
			html	: msg
		});

		elem.click(function(){
			$(this).fadeOut(function(){
				$(this).remove();
			});
		});

		setTimeout(function(){
			elem.click();
		},5000);
		elem.hide().appendTo('body').slideDown();
	}
}
