
$(function(){$("div.combobox ul").bgiframe();$("div.combobox").click(function(){$(this).children("ul").show();return false;});$("div.combobox").hover(function(){},function(){$(this).children("ul").hide();});$("div.combobox ul li a").click(function(){$("body *").css("cursor","wait");$(this).parent().parent().parent().children("ul").hide();$(this).parent().parent().parent().children("div").text($(this).text());document.location.href=$(this).attr('href');return false;});$("div.combobox ul").mousewheel(function(event,delta){var off7=18*delta;$(this).scrollTop($(this).scrollTop()-off7);event.stopPropagation();event.preventDefault();});});