function openGalleryPopup(id, language) {
    var documentElement = document.documentElement;

	$('#canvas').css('height', $(document).height());
	$('#canvas').css('opacity', 0.5).fadeIn('slow');
	$('#gallery_popup').fadeIn('slow');
	$('#gallery_popup').css('width', 832);
	$('#gallery_popup').css('height', 652);
	$("#gallery_popup").load("gallery.php", {id : id, language : language}, onGalleryLoaded);
	$('#gallery_popup').css('top', documentElement.scrollTop);
	$('#gallery_popup').css('left', documentElement.clientWidth / 2 - $('#gallery_popup').width() / 2);
} // function

function closeGalleryPopup() {
	$('#canvas').fadeOut('slow');
	$('#gallery_popup').fadeOut('slow');
} // function

function onGalleryLoaded() {
    $('#gallerybox_gallery').css('top', $('#gallerybox_description').css('top') + $('#gallerybox_description').height());
    $('#gallerybox_footer').css('top', $('#gallerybox_gallery').top() + $('#gallerybox_gallery').height());
} // function

$(document).ready(function() {
    $("#rightbox").css("height", $("#contentbox").height() + "px");
}); // function

