// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults
if (window.location.pathname == '/resources/summit')
window.location = '/summit/report';

jQuery(document).ready(function() {
  try {
  jQuery('a').click(function(){
    if (typeof(_gaq) != 'undefined') {
      var href = jQuery(this).attr('href');
      var attr = href.match(/\..+$/) ? '/downloads' : '/outgoing';

      _gaq.push(['_trackEvent', 'links', attr, href]);
      }
    });
    $('div[ticker]').vTicker({speed: 2000, pause: 8000, anmation: 'fade', mousePause: true, showItems: 3, height: 120});
  } catch(e) {}
});

