/**
 * SAMPLE CODE TO ADD RECENT BLOG POSTS TO FOOTER
 */
 $(document).ready(function() {
    var surl =  "http://ads.apexsuperstores.com/recent-blog-post/index.php?callback=?";
    var thelinks = "<ul>";
    var counter = 0;
    $.getJSON("http://ads.apexsuperstores.com/recent-blog-post/index.php?callback=?",  function(data) {
      $.each(data, function() {
      	counter++;
      	if(counter <= 5){
      		if(this['title'].length > 35){ var message = this['title'].substring(0,35) + " ...";}else{ var message = this['title']};
          thelinks= thelinks + "<li><a href='" + this['link'] + "' target='_blank'>" + message + "</a></li>";    
      	}
      });
      thelinks = thelinks + "</ul>";
      //alert(thelinks + "THELINKS");
      $('.social-links').replaceWith(function() {
          return '<div class="recent-blog-post">' + thelinks + '</div>';
      });
    });
});
/**
 * END BLOG POSTS CODE
 */
