function addIcons() {
  $(".icons li a").each(function(i) {
    var type = $(this).attr("class");
    $(this).prepend("<img src='images/" + type + ".png'/> ");
  });
}

function addTitles() {
  $("#social li a").each(function(i) {
    var label = $(this).text().trim();
    $(this).attr("title","Litrik De Roy op " + label);
  });
}

$(document).ready(function() {
  addIcons();
  addTitles();
});

