/**
 * blobAnimation.js
 * register dependencies between blobs for the animation - what blobs should be showing
 * and at what opacities when each blob is activated
 */
var blobAnimation = {
    default_config: {
				'what_is_it_all_about': 100,
				'the_bigger_picture': 70,
				'next_event':60,
				'making_music': 40,
			  'research': 30,
				'sonic_bed_shanghai': 20, 
		    'sonic_bed_london': 20
		},
    sonic_bed_london: {
				'what_is_it_all_about': 90,
				'sonic_bed_shanghai': 80,
				'instrument_lab': 60,
				'making_music': 40,
				'history': 40,
				'sonic_armchair': 30,
				'chaise': 20
		},
		sonic_bed_shanghai: {
				'what_is_it_all_about': 70,
		    'sonic_bed_london': 60,
				'the_bigger_picture': 60,
				'scores': 30,
				'making_music': 20,
				'history': 10
		},
		what_is_it_all_about: {
				'the_bigger_picture': 80,
		    'the_daily_sporadic': 70,
			  'making_music': 60,
		    'sonic_bed_shanghai': 40,
				'vibration_room': 40,
		    'sonic_bed_london': 30,
				'kaffes_biography': 20 
		},
		sonic_armchair: {
		    'chaise': 80,
		    'sonic_bed_shanghai': 60,
		    'sonic_bed_london': 60,
		    'kaffes_biography': 40,
				'history': 50,
				'vibration_room': 20
		},
		the_daily_sporadic: {
				'discussion_room': 70,
				'the_bigger_picture': 60,
				'making_music': 40,
				'research' : 30,
		    'kaffes_biography': 20,
				'instrument_lab': 20
	  },
	  chaise: {
		    'sonic_armchair': 70,
		    'sonic_bed_shanghai': 60,
		    'sonic_bed_london': 50,
		    'history': 30,
				'vibration_room': 30
		},
		kaffes_biography: {
			  'the_daily_sporadic': 80,
				'the_bigger_picture': 70,
				'discussion_room': 60,
				'making_music': 60,
				'research' : 50,
				'instrument_lab': 40,
				'vibration_room': 20
		},
		scores: {
				'making_music': 80,
				'instrument_lab':70,
				'sonic_bed_shanghai': 60,
		    'sonic_bed_london': 60,
				'vibration_room': 40,
				'research': 20
		},
		discussion_room: {
				'vibration_room': 80,
				'the_bigger_picture': 70,
				'research': 60,
				'making_music': 50,
				'the_daily_sporadic':40,
				'what_is_it_all_about': 30
		},
		history: {
				'the_bigger_picture': 60,
		    'making_music': 40,
				'instrument_lab': 40,
				'vibration_room': 30
		},
		vibration_room: {
				'making_music': 70,
				'instrument_lab': 60,
		    'research': 50,
				'discussion_room': 50,
		    'the_daily_sporadic': 30,
		    'the_bigger_picture': 20
		},
		making_music: {
		    'sonic_bed_london': 80,
        'scores': 70,
			  'instrument_lab': 60,
				'vibration_room': 60,
			  'sonic_bed_shanghai': 50,
				'research': 50,
			  'next_event':50,
				'discussion_room': 40,
		    'the_daily_sporadic': 20
		},
		research: {
				'vibration_room': 80,
				'the_bigger_picture': 70,
		    'instrument_lab': 70,
		    'discussion_room': 40,
		    'the_daily_sporadic': 30
		},
		the_bigger_picture: {
				'discussion_room': 60,
				'research': 50,
				'what_is_it_all_about': 20
		},
		instrument_lab: {
				'making_music': 80,
		    'research': 70,
		    'the_daily_sporadic': 60,
				'vibration_room': 50,
				'the_bigger_picture': 40,
				'scores': 20,
				'discussion_room': 20
		},
		next_event: {
				'making_music': 70,
		    'the_daily_sporadic': 60,
		    'research': 50,
				'discussion_room': 40,
				'scores': 20
		}
};

