﻿$(document).ready(function() {
  $(".style a").click(function() {
    ga_trackEvent("Navigation", "BestSelling")
  })
  var u = "/ajax/recs/home.asp?g=BrandPage&c=0&a=*&u=" + document.location.pathname;
  $.get(u, function(data) {
    if (data.substr(0, 5) != "<html") {
      $("#recs").html(data)
    }
  })
  var u='/ajax/recs/home.asp?g=Brands&c=1&a=*&u='+document.location.pathname;
  $.get(u,function(data){
    if (data.substr(0, 5) != "<html") {
      $('#verticalrecs').html(data);    
    }
  });
});

