$(document).ready(function() {

	$("#accordion").accordion({ 
		active: false,
		header: "h2" }
	);

});


function programme() {
	theWidth = 500;
	theHeight = 550;
	theTop = (screen.height-theHeight*1.5)/2;
	theLeft = (screen.width-theWidth)/2;
	winopts = "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=auto,resizable=yes,copyhistory=0,width="+theWidth+",height="+theHeight+",top="+theTop+",left="+theLeft;
	smallwindow=window.open("programme.dhtml","disclaimer",winopts);
  	smallwindow.focus();
}
