$(document).ready(function(){
	$('#account-chooser-table :radio').click(function(){
			// Set the currently selected item to be not selected. Comment out
			// the following line if you meant the ability to select multiples.
			$(".redlight").removeClass("redlight");
			// Get the parent of the check box, this should be its containing
			// TD, Then get the parent of that which should be the TR.
			//(this).parent().parent().addclass("redlight");
		$(this).parent().parent().addClass("redlight");
		});	
		});