            $(
			function()
			{
				_cssStyleSelectJQ1 = $("#cssStyleSelect").combobox(
				{		comboboxContainerClass: "comboboxContainer",
						comboboxValueContentContainerClass: "comboboxValueContainer",
						comboboxValueContentClass: "comboboxValueContent",
						comboboxDropDownClass: "comboboxDropDownContainer",
						comboboxDropDownButtonClass: "comboboxDropDownButton",
						comboboxDropDownItemClass: "comboboxItem",
						comboboxDropDownItemHoverClass: "comboboxItemHover",
						comboboxDropDownGroupItemHeaderClass: "comboboxGroupItemHeader",
						comboboxDropDownGroupItemContainerClass: "comboboxGroupItemContainer"
				});
				
				_cssStyleSelectJQ1.combobox.onChange = 
					function()
					{	
						//changeStyle();						
				        var cssStyleSelectJQ1 = $("#cssStyleSelect");
				        var selectedval1 = cssStyleSelectJQ1.val();
				        if(selectedval1!="0")
				        {
				           window.location.href=selectedval1;
				        }
						
					};
				
			
			});


            $(
			function()
			{
				_cssStyleSelectJQ2 = $("#cssStyleSelect2").combobox(
				{		comboboxContainerClass: "comboboxContainer2",
						comboboxValueContentContainerClass: "comboboxValueContainer2",
						comboboxValueContentClass: "comboboxValueContent2",
						comboboxDropDownClass: "comboboxDropDownContainer2",
						comboboxDropDownButtonClass: "comboboxDropDownButton2",
						comboboxDropDownItemClass: "comboboxItem2",
						comboboxDropDownItemHoverClass: "comboboxItemHover2",
						comboboxDropDownGroupItemHeaderClass: "comboboxGroupItemHeader2",
						comboboxDropDownGroupItemContainerClass: "comboboxGroupItemContainer2"
				});
				
				_cssStyleSelectJQ2.combobox.onChange = 
					function()
					{	
						//changeStyle();
						var cssStyleSelectJQ2 = $("#cssStyleSelect2");
				        var selectedval2 = cssStyleSelectJQ2.val();
				        if(selectedval2!="0")
				        {
				           window.location.href=selectedval2;
				        }
						//alert(selectedStyle);
					};
				
			
			});

