jQuery(document).ready(function()
{
	$('img#photo').click(function(e)
	{
		var x = e.pageX - this.parentNode.offsetLeft;
		var y = e.pageY - this.parentNode.offsetTop;

		$('.linkable').modal();
		$('.linkable').modal_show();

		$('input#photo_link_posx').val(x);
		$('input#photo_link_posy').val(y);
	});

	$('a[rel]').modal();

	$('.hiding').mouseenter(function(e)
	{
		$('.hidden').show();
	});
	$('.hiding').mouseleave(function(e)
	{
		$('.hidden').hide();
	});
});