	jQuery(document).ready(function() {
		$('tr.select').click(function (){
			box = $(this).next();
			box.hasClass('close') ? box.removeClass('close') : box.addClass('close');
		});
		$('tr.select a').click(function (){
			box = $(this).parent().parent().next();
			box.hasClass('close') ? box.removeClass('close') : box.addClass('close');
			return false;
		});
	});
