jQuery(function(){var geo_country=jQuery('#geo_country option:selected').attr('rel');var education=jQuery('#education').val();if(geo_country!==''){getSchools(geo_country,education);}
jQuery('#geo_country').change(function(){var country=jQuery('#geo_country option:selected').attr('rel');getSchools(country,'');});var isShowOption=false;jQuery('.btn_arrow').click(function(){if(isShowOption){jQuery('#education_1').hide();jQuery('.btn_arrow').attr('src','http://site.hellochina.com/img/icon_arrow29.gif');jQuery('#education').show();isShowOption=false;}else{jQuery('#education_1').show();jQuery('.btn_arrow').attr('src','http://site.hellochina.com/img/icon_arrow38.gif');jQuery('#education').hide();isShowOption=true;}});jQuery('.member_list_box_extend .item_wrap').hover(function(){jQuery(this).addClass('bg');},function(){jQuery(this).removeClass('bg');});});function getSchools(country,currentSchool){$('.btn_loading').show();$('.btn_arrow').hide();isShowOption=false;jQuery.ajax({type:"POST",url:"/u/api",dataType:"json",data:{api:'HC.Geonames.Api.getschools',country:country},success:function(r){isShowOption=false;var html=[];jQuery('#education_1').remove();html.push('<select class="detail_select hiden" style="width:180px;" name="education_1" id="education_1">');var num=0;for(var i in r.schools){num++;selected='';if(currentSchool==r.schools[i]){selected='selected="selected"';}
if(i!=='0'){html.push('<option value="'+r.schools[i]+'" '+selected+'>'+r.schools[i]+'</option>');}
else{html.push('<option value="'+r.schools[i]+'" id="education_school_other">'+r.schools[i]+'</option>');}}
html.push('</select>');if(num==1){jQuery('.btn_loading').hide();jQuery('.btn_arrow').hide();}
else{jQuery('.btn_loading').hide();jQuery('.btn_arrow').show();jQuery('.education_selector').before(html.join(''));jQuery('#education_1').hide();jQuery('#education_1').change(function(){var school=jQuery(this).val();jQuery('#education').attr('value',school);jQuery('#education_1').hide();jQuery('#education').show();jQuery('.btn_arrow').attr('src','http://site.hellochina.com/img/icon_arrow29.gif');isShowOption=false;})}}});}