/* Automatically assign onclick omniture events to links using jQuery
   selectors to do so when the page is loaded
*/
$(document).ready(function ()
{

  default_linkTrackVars=",channel,hier1,campaign,eVar4,eVar7,eVar12,eVar14,eVar15,eVar16,prop4,prop12,prop13,prop14,prop15,prop16,prop17";

  $("#sharethis").click(function()
  {
    s.linkTrackVars='prop5' + default_linkTrackVars;
    s.prop5='fv: invasionofthebulls: sweeps: global: share this';
    s.tl(this,'o',s.prop5);
  });


  /* Automagically add Omniture handling code, based on the href */

  $("a[href*=fordvehicles.com/trucks/superduty]").each(function()
  {
    $(this).click(function() {
      s.linkTrackVars='events,eVar6,prop5' + default_linkTrackVars;
      s.linkTrackEvents='event4';
      s.events='event4';
      s.eVar6='fv: super duty';
      s.prop5='referral: fv: super duty home';
      s.tl(this,'o',s.prop5);
    });
  });

  $("a[href*=fordvehicles.com/trucks/f150]").each(function()
  {
    $(this).click(function() {
      s.linkTrackVars='events,eVar6,prop5' + default_linkTrackVars;
      s.linkTrackEvents='event4';
      s.events='event4';
      s.eVar6='fv: f-150';
      s.prop5='referral: fv: f-150 home';
      s.tl(this,'o',s.prop5);
    });
  });

  $("a[href*=pbrnow.com/competition/bfts/]").each(function()
  {
    $(this).click(function() {
      s.linkTrackVars='prop5' + default_linkTrackVars;
      s.prop5='exit: pbrnow competition';
      s.tl(this,'o',s.prop5);
    });
  });
});

function metricsFunction(_url,_event)
{
  // _event: load is 0, start is 1, and 80% is 2
  if(_event == 1) {
    var axel = Math.random()+"";
    var a = axel * 10000000000000;
    $('#bottomSpacer').html('<IFRAME SRC="http://fls.doubleclick.net/activityi;src=690327;type=fvflup;cat=vidst;u1=Ford F-150;u4=2010 Invasion of the Bulls Sweeps;ord='+ a + '?" WIDTH=1 HEIGHT=1 FRAMEBORDER=0></IFRAME>');
  }
  else if(_event == 2) {
    var axel = Math.random()+"";
    var a = axel * 10000000000000;
    $('#bottomSpacer').html('<IFRAME SRC="http://fls.doubleclick.net/activityi;src=690327;type=fvflup;cat=vidcom;u1=Ford F-150;u4=2010 Invasion of the Bulls Sweeps;ord='+ a + '?" WIDTH=1 HEIGHT=1 FRAMEBORDER=0></IFRAME>');
  }
}