(function($) {
	$(function() {
		
		// highlighted row on checked
		$('#participator-results table input[type=checkbox]').each(function(){
			if(this.checked) $(this).parents('tr').addClass('checked');
		}).click(function(){
			if(this.checked) $(this).parents('tr').addClass('checked');
				else $(this).parents('tr').removeClass('checked');
		});
		
		// zebra striping table
		$('table.striped tbody tr:odd').each(function(){
			$(this).addClass('odd');
		});
		
		// print button 
		$('a.print').click(function(e){
			window.print();
			e.preventDefault();
		});
		
	});	
})(jQuery);
