/**
 * @author ccortes
 */
var combobox = {
	options : {
		arrowURL:"/HealthCare/images/bgSearchComboBoxButton.gif",
		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(){
		$(".cboRegion").combobox(this.options);
	}
}
$("document").ready(function(){
	combobox.init();			
});

