if (window.location.toString().indexOf('empirestaging') < 0) {
  try {
  var pageTracker = _gat._getTracker("UA-7505942-2");
  pageTracker._trackPageview();
  } catch(err) {}
}

$(document).ready(function() {
  
	// Testimonial Widget
  var totalNum = 11;
  var rndNum = Math.floor(Math.random() * totalNum);
  $.getJSON('/js/testimonials.js', function(json){
    var testimonial = json.data.testimonials[rndNum];
    $('#t_quote').html(testimonial.quote);
    $('#t_author').html(testimonial.author);
    if (testimonial.image_path == "") {
      $('#t_image').attr('src', '/images/testimonial_placeholder.jpg');
    } else {
      $('#t_image').attr('src', ''+ testimonial.image_path +'');
    };
    
  });
	
  jQuery('.hlist ul').superfish({
    autoArrows: false,
    dropShadows: false,
    animation: {height:'show'},
    speed: 'fast', 
    delay: 500 
  });
  
});