window.addEvent('domready', function() {
	$$('.rollingRow').each(function(el) {
		el.addEvent('mouseenter', function() {
			var index = el.cellIndex;
			$$('.rollingRow').each(function(el2) {
				if(el2.cellIndex == index) {
					el2.addClass('rowHilight');
				}
			});
		});
		
		el.addEvent('mouseleave', function() {
			$$('.rollingRow').each(function(el2) {
				el2.removeClass('rowHilight');
			});
		});
		
		el.addEvent('click', function() {
			document.location.href = '/join';
		});
	});
});
