﻿$(document).ready(function() {
	for(countComoBoxs=0;countComoBoxs<$("div[id*='comboBoxSpecial']").length;countComoBoxs++){
		strClass=$("div[id*='comboBoxSpecial']")[countComoBoxs].className;
		strClass="comboBoxSpecial "+strClass;
		$("div[id*='comboBoxSpecial']")[countComoBoxs].className=strClass;
	}
	$("div.comboBoxSpecial > select").hide();
	$("div.comboBoxSpecial > span").show();
   
	$("html:not(div.comboBoxSpecial > span),html:not(div.comboBoxSpecial)").click(function () { 
		$("div.comboBoxSpecial > select").hide(); 
	});
   
	$("div.comboBoxSpecial > span").click(function () { 
		var count=($(this).next().children().length);
		count=count>20?20:count;
		count=count==1?2:count;
		$(this).next().attr("size",count);
		$(this).next().slideToggle(50);//slideDown(400); 
    });
	
});

/*
   
function ChangePicture(picKontainer, picPath) {
    var obj = document.getElementById(picKontainer);
    if(obj==null) return;
    obj.src = picPath;
}
*/