$(document).ready(function(){
$('#servicesHome').load('/includes/home-services.htm',function(){
      var $quotes = $(this).find('div.servicesWrap');
      var n = $quotes.length;
      var random = Math.floor( Math.random()*n );
      $quotes.hide().eq(random).show();

}); 
});


$(document).ready(function(){
$('#includesHome').load('/includes/home-includes.htm',function(){
      var $quotes = $(this).find('div.homeIncludeWrap');
    var n = $quotes.length;
      var random = Math.floor( Math.random()*n );
      $quotes.hide().eq(random).show();

}); 
});
