function dataBind() {
	var a = new Array (
		new Contact ('John Barraclough',	'jbarraclough@heckmondwike-fb.co.uk',	'07831 808955',	1),
		new Contact ('Doug Norris',			'dnorris@heckmondwike-fb.co.uk',	'07917 186827',	2),
		new Contact ('Mel Parker',			'mparker@heckmondwike-fb.co.uk',	'07977 494859',	3),
		new Contact ('Nigel Adams',			'nadams@heckmondwike-fb.co.uk', 	'07968 326737',	4),
		new Contact ('Nigel Adams',			'nadams@heckmondwike-fb.co.uk',		'07968 326737',	9),
		new Contact ('Chayne Whittington', 	'cwhittington@heckmondwike-fb.co.uk', 	'07866 677960',	5),
		new Contact ('Jim Hodges',			'jhodges@heckmondwike-fb.co.uk',	'07778 766359',	6),
		new Contact ('Geoff Jones',			'gjones@heckmondwike-fb.co.uk',		'07768 503088',	7),
		new Contact ('Richard Faulkner',	'rfaulkner@heckmondwike-fb.co.uk',	'07768 615868',	8),
		new Contact ('Kevin Smith',			'ksmith@heckmondwike-fb.co.uk',		'07778 765121',	10),
		new Contact ('Robert Mortimer', 	'rmortimer@heckmondwike-fb.co.uk',	'07885 137926',	11),
		new Contact ('David Stephens',		'dstephens@heckmondwike-fb.co.uk',	'07798 690201',	12),
		new Contact ('Amanda Mellor',		'amellor@heckmondwike-fb.co.uk',	'07770 747620',	13),
		new Contact ('Raymond Young',		'ryoung@heckmondwike-fb.co.uk',		'07971 792618',	14),
		
		new Contact ('Please see London section','Please see London section','Please see London section',15)
	);
	
	return a;
}

function Contact (name, email, telephone, id) {
	this.name = name;
	this.email = '<a href="mailto:' + email + '">' + email + '</a>';
	this.telephone = telephone;
	this.id = id;
}

