/**
 * @author ccortes
 */
var combobox = {
	options : {
		arrowURL:"images/forms/arrow_btn.jpg",
		arrowHTML: function(){
			return $('<img class = "ui-combobox-arrow" border = "0" src = "' 
				+ this.options.arrowURL + '" width = "18" height = "19" />')
		},
		listContainerTag: 'ul',
		listHTML: function(data,i){
			var cls = i % 2 ? 'odd' : 'even';
			return '<li class = "ui-combobox-item ' + cls + '">' + data + '</li>';
		}

	},
	init: function(){
		$(".cbRegion").combobox(this.options);
	}
}
$("document").ready(function(){					 
	combobox.init();			
});

