		var current_selected_channel = 'channel_108';
		var current_selected_toolbar_button = 'toolbar_button_1';
		
		function channel_remote(action, target) {
		
			Obj = returnObjById(target);
			
			currentClassName = Obj.className;
			
			if (action == 'click'){
			
				source = current_selected_channel;
				current_selected_channel = target;
				
				Obj_source = returnObjById(source);
				Obj_source.className = 'channel_off';
			
				if(currentClassName == 'channel_off'){ newClassName = 'channel_on'; }
				else if(currentClassName == 'channel_hover'){ newClassName = 'channel_on'; }
				else if(currentClassName == 'channel_on'){ newClassName = 'channel_off'; }
				
				<!-- LOAD AJAX FOR CHANNEL -->
				
				
				
			} else if (action == 'over') {
			
				if(currentClassName == 'channel_off'){ newClassName = 'channel_hover'; }
				else if(currentClassName == 'channel_hover'){ newClassName = 'channel_hover'; }
				else if(currentClassName == 'channel_on'){ newClassName = 'channel_on'; }
			
			} else if (action == 'out') {
			
				if(currentClassName == 'channel_off'){ newClassName = 'channel_off'; }
				else if(currentClassName == 'channel_hover'){ newClassName = 'channel_off'; }
				else if(currentClassName == 'channel_on'){ newClassName = 'channel_on'; }
			
			} else { newClassName = currentClassName; }
			
			Obj.className = newClassName;
		}
		
		function toolbar_remote(action, target) {
		
			Obj = returnObjById(target);
			
			currentClassName = Obj.className;
			
			if (action == 'click'){
			
				source = current_selected_toolbar_button;
				current_selected_toolbar_button = target;
				
				Obj_source = returnObjById(source);
				Obj_source.className = 'toolbar_button_off';
			
				if(currentClassName == 'toolbar_button_off'){ newClassName = 'toolbar_button_on'; }
				else if(currentClassName == 'toolbar_button_hover'){ newClassName = 'toolbar_button_on'; }
				else if(currentClassName == 'toolbar_button_on'){ newClassName = 'toolbar_button_off'; }
							
			} else if (action == 'over') {
			
				if(currentClassName == 'toolbar_button_off'){ newClassName = 'toolbar_button_hover'; }
				else if(currentClassName == 'toolbar_button_hover'){ newClassName = 'toolbar_button_hover'; }
				else if(currentClassName == 'toolbar_button_on'){ newClassName = 'toolbar_button_on'; }
			
			} else if (action == 'out') {
			
				if(currentClassName == 'toolbar_button_off'){ newClassName = 'toolbar_button_off'; }
				else if(currentClassName == 'toolbar_button_hover'){ newClassName = 'toolbar_button_off'; }
				else if(currentClassName == 'toolbar_button_on'){ newClassName = 'toolbar_button_on'; }
			
			} else { newClassName = currentClassName; }
			
			Obj.className = newClassName;
		}