// JavaScript Document
$(function() {
  $('.icons > img').each(function(index) {
	  var selected = $(this).attr("src").split("/");
	  if(selected[selected.length-1]=="icon-.png"){
		  $(this).hide();
	  }
  });
});

