// JavaScript Document

window.addEvent('domready', function() {
   var hrefs=$$('.homoControll');


   hrefs.each(function(item,index) {
      item.addEvent('click',function() {

         try {
            splitted=item.href.split("#");
            if(splitted.length>1) {
               getHomoPartByAjax(splitted[1]);
            } else {

            }
         } catch(Ex) {
            alert(Ex);
         }

      })
   })
});

