//
//	File:		index.js
//	Created:	09/03/2009
//

window.onload = initialise;

function initialise ()
{
	initSES ();
	initStudy ();
}


function initStudy ()
{
	var remList = new Array ("jsoff");
	var disList = new Array ("json");
	
	remove (remList);
	display (disList);
	insert (insertList);
}


var insertList =
	[
		{
			id: "json",
			name: "science",
			text: "contact",
			display: "Vivien"
		}
	];






