var h = {

  slider: '',
  activeColor : '#3399FF',
  inactiveColor: '',
 
  sortButtons: function(ev){
      var elm = $( new Event(ev).target );
      $$('#nav-menu1 a').each(function(el){
        if(el == elm){
          el.setStyle('color', h.activeColor);
           el.getParent().setStyle('background', 'none');
        }else{
          el.setStyle('color', h.inactiveColor);
          el.getParent().setStyle('background', 'transparent url(http://www.corvuscapital.com/images/bullet.jpg) top left no-repeat');
         el.getParent().set('style','padding:0px 5px 0px 10px;');
        }
      });
   },

  init: function(){
    h.slider = new FancySlider( '#slider_inner .slider_item', {mode:'scroll', plane:'horizontal', transition:'sine:out', container:'slider_outer', containerHeight:350 });
    h.slider.addButton( 'market_news_link', 0);
    h.slider.addButton( 'int_link', 1);
    h.slider.addButton( 'other_link', 2);
   
    $('nav-menu1').addEvent('click', h.sortButtons);
   
  }
}

window.addEvent('domready', h.init);