$(document).ready(function() {
  $('#ex2').jqm({ajax: '@href', trigger: 'a.ex2trigger'});
});

function write_friend_request(fid) {
	$("#add-friend-link").html('<img src=\"../img/ex/load.gif\" alt=\"loading\" class=\"vam\">');
	$.get("http://www.protenis.cz/friends/ajax.write.request.php", { fid: fid }, function(data){
		   $("#add-friend-info").html(data);
		   $("#add-friend-link").html('');

	});
}

