$(document).ready(function() {
	$('tr.clickable').click(function() {
		if ($(this).is(".active")) {
			removeAllActive();
		} else {
			removeAllActive();
			$(this).next('.rollout').addClass('active');
			$(this).addClass('active');
		}
	});

	function removeAllActive() {
		$('.clickable').removeClass('active');
		$('.rollout').removeClass('active');
	}
});
