$(document).ready(function() {
  $('#hp-jumbotron_controller a').first().addClass('selected')
  $('#hp-jumbotron a').first().show()
  $('#hp-jumbotron_controller a').last().css({
    width: '158px',
    border: '0 !important'
  })
  $('#hp-jumbotron_controller a').hoverIntent(function(){
      if(!$(this).hasClass('selected')) {
        _gaq.push(['_trackEvent', 'Home Page', 'Jumbotron', $(this).text()]);
        
    		active_link = $('#hp-jumbotron_controller a.selected')
    		current_item = '#'+active_link.data('id')
    		new_item = '#'+$(this).data('id')
        
    		active_link.removeClass('selected')		
    		$(this).addClass('selected')

    		$(current_item).fadeOut('fast')
    		$(new_item).fadeIn('fast')
    	}

    }, function() {
      return
    })
});

