/*global Example */
Example.display(

{
	"name" : "The Beatles",
	"wiki" : "The_Beatles",
	"genre" : [ "pop", "rock" ],
	"start" : 1960,
	"end" : 1970,
	"members" : [
		{
			"wiki" : "John_Lennon",
			"type" : [ "vocals", "guitar", "bass guitar", "piano", "harmonica" ],
			"firstName" : "John",
			"lastName" : "Lennon",
			"start" : 1960,
			"end" : 1970
		},
		{
			"wiki" : "Paul_McCartney",
			"type" : [ "bass guitar", "guitar", "piano", "keyboards", "drums", "mandolin", "vocals" ],
			"firstName" : "Paul",
			"lastName" : "McCartney",
			"start" : 1960,
			"end" : 1970
		},
		{
			"wiki" : "George_Harrison",
			"type" : [ "guitar", "ukulele", "sitar", "synthesizer", "piano", "vocals", "mandolin", "organ", "drums" ],
			"firstName" : "George",
			"lastName" : "Harrison",
			"start" : 1960,
			"end" : 1970
		},
		{
			"wiki" : "Ringo_Starr",
			"type" : [ "drums", "percussion", "piano", "vocals", "harmonica" ],
			"firstName" : "Ringo",
			"lastName" : "Starr",
			"start" : 1962,
			"end" : 1970
		},
		{
			"wiki" : "Stuart_Sutcliffe",
			"type" : [ "bass", "vocals" ],
			"firstName" : "Stuart",
			"lastName" : "Sutcliffe",
			"start" : 1960,
			"end" : 1961
		},
		{
			"wiki" : "Pete_Best",
			"type" : [ "drums", "percussion", "vocals" ],
			"firstName" : "Pete",
			"lastName" : "Best",
			"start" : 1960,
			"end" : 1962
		}
	]
}

);
