var servicos;

$.Servicos = function(el) {
	
	var me = this;
	var $element = this.$element = $(el);
	
	this.popularComboAgendamento = function(val, targetMotor, vetorMotor) {
		document.getElementById(targetMotor).options.length = 0;
		
		if (vetorMotor[val].length == 0) {
			document.getElementById(targetMotor).options[0] = new Option("----", 0);
		} else {
			for(var i=0;i<vetorMotor[val].length;i++) {
				document.getElementById(targetMotor).options[i] = new Option(vetorMotor[val][i].valor, vetorMotor[val][i].label);
			}
		}
		document.getElementById(targetMotor).selectedIndex =0;
	};
	
};

(function($){
	$(function (){
		
		var $elemento = $("#pagina.servicos");
		
		servicos = new $.Servicos($elemento);

	});
})(jQuery);
