
function redirecto_to_category(category)
{
    switch(category) {
      case '1':    window.location = 'http://web2006.disarp.com/category/show/1';break
      case '2':    window.location = 'http://web2006.disarp.com/category/show/2';break
      case '3':    window.location = 'http://web2006.disarp.com/category/show/3';break
      case '4':    window.location = 'http://web2006.disarp.com/category/show/4';break
      case '5':    window.location = 'http://web2006.disarp.com/category/show/5';break
      case '6':    window.location = 'http://web2006.disarp.com/category/show/6';break
      case '7':    window.location = 'http://web2006.disarp.com/category/show/7';break
      case '8':    window.location = 'http://web2006.disarp.com/category/show/8';break
      case '9':    window.location = 'http://web2006.disarp.com/category/show/9';break
      case '10':   window.location = 'http://web2006.disarp.com/category/show/10';break
      case '11':   window.location = 'http://web2006.disarp.com/category/show/11';break
      case '12':   window.location = 'http://web2006.disarp.com/category/show/12';break
      case '13':   window.location = 'http://web2006.disarp.com/category/show/13';break
      
      
      default:   break;
   }
    
}



var pageRules = {
    '#categories_list:change': function(element){    
        redirecto_to_category($F('categories_list'));
    }
}

Rules.push(pageRules);



