$(document).ready( function() {
	// This stripes the table						
	$('#seminarTable tr:nth-child(odd)').addClass('stripe')
	
	$('#seminarArchiveTable tr:nth-child(odd)').addClass('stripe')
	 
	$('input[type=checkbox]').click( function() {
		var justClicked = $(this).attr('id')
		var parentId = $(this).parent().parent().attr('id')
		var val = []
		$('#' + parentId + ' input[type=checkbox]').each(
			  function(i) { 		
					val[i] = $(this).attr('id')
					
					if(val[i] == justClicked) {
						//$('#' + val[i]).attr('checked', true)
					}
					
					else {
						$('#' + val[i]).attr('checked', false)
					}
			 })
	})
	
	
})