function jqFriendSend()
	{
	var cct = $('input[name=csrf_token]').val();

	$.post('/user/send_friend/index', {
			'url': document.location.href,
			'title': document.title,
			'initial_form': true,
			'csrf_token': cct
		}, function(data) {
			$('#send_friend')
				.html(data)
				.jqm()
				.jqmShow();
		});
	}

function show_image_gallery(img_id)
	{
	gallery.gotoimage(img_id-1);
	$('#jqmodal_holder').jqm().jqmShow();
	$(document).keyup(function(e) {
		if (e.keyCode == 27)
			{
			$('#jqmodal_holder').jqmHide()
			}
		});
	}

function show_thumb(thumb_id,big_thumb)
	{
	$('#big_thumb img')
		.attr('src',big_thumb)
		.attr('id',thumb_id);
	}
