$(document).ready( function() {
	$('.program1').hide();
	$('.program2').hide();
	$('.program3').hide();
	$('.program4').hide();
	$('.program').click(function(){
		if ($(".program" + $(this).attr('id')).is(":hidden")) {
			$(".program" + $(this).attr('id')).slideDown();
		} else {
			$(".program" + $(this).attr('id')).slideUp();
		}
	});
});
