hhtLink = new Class({
	
	
	init : function(item){
		this.item = item;
		this.item.setStyle('cursor','pointer');
		this.item.addEvent('click', this.click.bindWithEvent(this) );		
	},
	
	click:function(event){
		var href = this.item.getProperty("hht:link_url");
		if (href){
			location.href = href;
		}
	}
});

window.addEvent('load', function()	{
	$$('.hht_link').each(function(item){
		item.hht_link = new hhtLink();
		item.hht_link.init(item);	
	});

});
