$(document).ready(init);
function init() {
	$('.expcol').each(function() {
		$(this).click(expcol);
	});
}
function expcol() {
	var it = '#' + $(this).attr('id');
	var xit = '#x' + $(this).attr('id');
	$(xit).toggleClass('visible');
	$(it).toggleClass('minus');
}



