ActionGroup = {
	USER: "user",
	GROUP: "group",
	CITY: "city",
	ZONE: "zone",
	COUNTRY: "country"
};

var Action = new Class.create();
Action.prototype = {
	id: "",
	timestamp: 0,
	element: null,
	
	initialize: function(id, title, created, timestamp, key) {
		this.id = id;
		this.timestamp = timestamp;
	
		var content = "";
		
		content += "	";
		content += "		<img class=\"act-icon\" alt=\"\" src='/img/actions/" + key + ".gif' /> ";		
		content += 			title;				
		content += "	<span class=\"tiempo\">" + created + "</span>";
		content += "	";	
		
		this.element = document.createElement("li");
		this.element.id = 'action_' + this.id;
		this.element.style.lineHeight='18px';
		this.element.style.marginBottom='10px';
		this.element.style.display = 'none';
		Element.extend(this.element);				
		new Insertion.Bottom(this.element, content);						
	}

}; 


