function cinema() {
	$('#cinema .cinema_shedlue a').click(function(e) {
		return show_schedule(this);
	});
}

function show_schedule(obj) {
	var old=$(obj).parent().parent().find('.active:first');
	old.removeClass('active');
	old.html('<a href="" class="dotted">'+old.text()+'</a>');
	$('a',$(old)).click(function(){return show_schedule(this);});
	
	var id = $(old).attr('id');
	var matches = id.match(/([0-9]+)/g);
	id = '#she'+matches[0];
	$(id).hide();
	
	var id = $(obj).parent().attr('id');
	var matches = id.match(/([0-9]+)/g);
	id = '#she'+matches[0];
	$(id).show();
	
	$(obj).parent().html($(obj).text())
		  .addClass('active');
	return false;	  
	 
	
}