jQuery(function( $ ){
  
  var testimonial_count = $('#testimonials-list li').length;
  for(var i=1; i < testimonial_count; i++){
    newli = '<li><a href="#"><span>1</span></a></li>';
    newli = $('#testimonial-nav').append(newli);
    $('#testimonial-nav li:last-child a span').html(i);
  }
  
  var slider_count = $('#slides li').length;
  for(var i=1; i < slider_count; i++){
    newli = '<li><a href="#"><span>1</span></a></li>';
    newli = $('#slide-nav ul').append(newli);
    $('#slide-nav li:last-child a span').html(i);
  }

});


jQuery.easing.easeOutQuart = function (x, t, b, c, d) {
  return -c * ((t=t/d-1)*t*t*t - 1) + b;
};

// jQuery(function($)) {
//   $(function(){
//     $(window).resize(function(){
//       var w = $(window).width();
//       $("#footer").css('width',(w < 960) ? "960px" : "100%");
//     });
//   });
// };

jQuery(document).ready(function() {
  if (jQuery("h1.page-title").height() > 60) {
    jQuery("#container-single").css("top", -45);
  }
});


