$(function(){var form=$('#mainsearchform');var queryform=$('#queryform');var hiddenform=$('#articleform');var list=$('#institutions');var method=$('#method',hiddenform).val();var name=$('#name',hiddenform).val();var order_f=$('#order_f',hiddenform).val();form.submit(function(){var criteria='';var itypes=[];var properties=[];var all=$('input:checked[name=all]',form).val();$('input[name=query]',queryform).val('');if(all){criteria=$('#alltext',form).html();} else{all='';$('input:checked[name=itypes]',form).each(function(){itypes.push(this.value);criteria+=$('#itype-name'+this.value).html()+' + ';});itypes=itypes.join(',');$('input:checked[name=properties]',form).each(function(){properties.push(this.value);criteria+=$('#prop-name'+this.value).html()+' + ';});properties=properties.join(',');criteria=criteria.substr(0,criteria.length-3);} list.load(method+'.php',{x_view:'ajax',properties:properties,all:all,itypes:itypes,name:name});return false;});$('li.ckb',form).click(function(){var ckb=$('input',this)[0];$('span.all input:checked',form).parent().removeClass('cbkcheked');$('span.all input:checked',form).attr('checked','');$('li.ckl input:checked',form).parent().removeClass('cbkcheked');$('li.ckl input:checked',form).attr('checked','');ckb.checked=!ckb.checked;if(ckb.checked)$(this).addClass('cbkcheked');else $(this).removeClass('cbkcheked');});$('li.ckb input:checked',form).parent().addClass('cbkcheked');$('li.ckl',form).click(function(){var ckl=$('input',this)[0];var cklval=ckl.value;$('span.all input:checked',form).parent().removeClass('cbkcheked');$('span.all input:checked',form).attr('checked','');$('li.ckb input:checked',form).parent().removeClass('cbkcheked');$('li.ckb input:checked',form).attr('checked','');$('li.ckl input:checked',form).parent().removeClass('cbkcheked');$('li.ckl input:checked',form).attr('checked','');ckl.checked=!ckl.checked;if(ckl.checked)$(this).addClass('cbkcheked');else $(this).removeClass('cbkcheked');alphabetSearch(cklval);});$('li.ckl input:checked',form).parent().addClass('cbkcheked');$('span.all',form).click(function(){var all=$('input',this)[0];$('li.ckl input:checked',form).parent().removeClass('cbkcheked');$('li.ckl  input:checked',form).attr('checked','');$('li.ckb input:checked',form).parent().removeClass('cbkcheked');$('li.ckb input:checked',form).attr('checked','');all.checked=!all.checked;if(all.checked)$(this).addClass('cbkcheked');else $(this).removeClass('cbkcheked');alphabetSearch('');});$('span.all input:checked',form).parent().addClass('cbkcheked');alphabetSearch=function(letter){list.load(method+'.php',{x_view:'ajax',name:name,letter:letter});};filterMore=function(id){$('#'+id,form).each(function(){this.style.display='';});$('#filtermore_'+id,form).attr('style','display:none;');$('#filterless_'+id,form).attr('style','display:block;');};filterLess=function(id){$('#'+id,form).each(function(){this.style.display='none';});$('#filtermore_'+id,form).attr('style','display:block;');$('#filterless_'+id,form).attr('style','display:none;');};});
