General.subscript = {
	init: function(){

		this.programmeExpander();
	},
	programmeExpander: function(){
		if ($('.programme-item').length === 0) { return; }
		/*$('.programme-item-body').each(function() {
			$(this).toggle();
		});*/
		$('.programme-item-head span.expand a').click(function() {
			$(this).parent().toggleClass('close').parent().next().toggle();
			return false;
		});
		$('.programme-item-body a.back-link').click(function() {
			$(this).parent().toggle();
			return false;
		});
	}
}
$( 'document' ).ready( function(){
	General.subscript.init();
} );
