/* Event Tabs */
$(function () {    
	var tabContainers = $('.eventtab > div');  
      
	$('.eventtab ul li a').click(function () {        
		tabContainers.hide().filter(this.hash).fadeIn('normal').show();                
		$('.eventtab ul li a').removeClass('selected');        
		$(this).addClass('selected');    
	return false;    
}).filter(':first').click();
//}).filter(':first').click();
});

/* Table*/
$(document).ready(function() {
	$('div.table table tr td:first-child').addClass('grey');
});

