$(document).ready(function(){
	
	$(".boton_multiple").click(function(){
		var sClassName = this.className
		var aClassName = sClassName.split(" ");

		var aSelect;
		$.each(aClassName,function(i,o){
			if(o.indexOf("-")!=-1){
				aSelect = o.split("-");
			}
		});

		var selectInicio = aSelect[0];
		var selectTermino = aSelect[1];
	
		var idElement = this.value;
					
		if(idElement==">>"){
			moveAllOptions(document.getElementById(selectInicio),document.getElementById(selectTermino));
			// seleccionarTodos(document.getElementById(selectTermino));
			selectAllOptions(this);

		}else if(idElement==">"){				
			moveOptions(document.getElementById(selectInicio),document.getElementById(selectTermino));
			// seleccionarTodos(selectTermino);
			selectAllOptions(this);
	
		}else if(idElement=="<"){				
			moveOptions(document.getElementById(selectTermino),document.getElementById(selectInicio));
			// seleccionarTodos(selectInicio);
			selectAllOptions(this);

		}else if(idElement=="<<"){					
			moveAllOptions(document.getElementById(selectTermino),document.getElementById(selectInicio));
			// seleccionarTodos(selectInicio);
			selectAllOptions(this);

		}	
	});

});
