window.addEvent('domready', function() {
	
	$$('td.options').each(function(options) {
		var clickItem = options.getChildren('.rowClick').getLast();
		
		options.getAllPrevious().each(function(el) {
			if (el.hasClass('noclick')) return;
			el.setStyle('cursor', 'pointer');
			el.addEvent('click', function() {
				location.href = clickItem.get('href');
			});
		});
	});		
});
