$(function(){
	$target = $("#gl_tamacho");
	$target.attr("src", $target.attr("src").replace("_n", "_o"));

	//var comboboxSettings = {animationSpeed: 100};
	// Create the example combobox
	//setupCombobox();
});

var _officeItemListCombobox = null;
var _cssStyleSelectJQ = null;
var _animationTypeSelectJQ = null;
var _animationType = "slide";

// create a jquery combobx and set the Css class styles
function setupCombobox()
{
	_officeItemListCombobox = $('#officeItemList').combobox(
		{
			comboboxContainerClass: "comboboxContainer",
			comboboxValueContentContainerClass: "comboboxValueContainer",
			comboboxValueContentClass: "comboboxValueContent",
			comboboxDropDownClass: "comboboxDropDownContainer",
			comboboxDropDownButtonClass: "comboboxDropDownButton",
			comboboxDropDownItemClass: "comboboxItem",
			comboboxDropDownItemHoverClass: "comboboxItemHover",
			comboboxDropDownGroupItemHeaderClass: "comboboxGroupItemHeader",
			comboboxDropDownGroupItemContainerClass: "comboboxGroupItemContainer"
		},
		{
			animationType: _animationType,
			width: 200
		});
}