var Trace = jQuery.Class({
	message		: function(msg) {
		if(!jQuery('#trace').exists()) {
			jQuery('body').prepend('<div id="trace"><span>'+msg+'</span></div>');
		} else {
			jQuery('#trace').append('<span>'+msg+'</span>');
		}
	},
	error		: function(msg) {
		if(!jQuery('#trace').exists()) {
			jQuery('body').prepend('<div id="trace"><span class="error">'+msg+'</span></div>');
		} else {
			jQuery('#trace').append('<span class="error">'+msg+'</span>');
		}
	},
	
	prototype	: {
		init	: function() {}
	}
});
