$(document).ready(function() {
 // toggles the slickbox on clicking the noted link
  $('a.icon-friend').click(function (e) {
	e.preventDefault();
	$('#modal').modal();
  });
});