if (window.jQuery)
$(document).ready(function() {
  $("a").click(function() {
    var href = $(this).attr("href"); 
    if ( href.indexOf( 'synxis' ) !== -1 ) {
      _gaq.push(['_link', href]);
      return false;
    }
  });
  $("form").submit(function() {
    var action = $(this).attr("action"); 
    if ( action.indexOf( 'synxis' ) !== -1 ) {
      _gaq.push(['_linkByPost', this]);
    }
  });
});


