var Flow = {
	active: null,
	divs: null,
	change: function(id) {
		var el = $(Flow.divs[id]);	
		if(el) {
			$(Flow.divs[Flow.active]).hide();
			el.show();
			Flow.active = id;
		}
	}
}