$(document).ready(function() {
	$('.subtable-list').hide();
	
	$('.subtable').click(function() {
		$('+ .subtable-list', this).toggle();
		return false;
	});
});

Shadowbox.init({
	players: ['iframe'],
	height: 500,
	width: 500
});