// JavaScript Document
//<script type="text/javascript">

//jQuery lighbox plugin for Galleries:
$(function() {
	$('#gallery a').lightBox({fixedNavigation:false});
});

// Belegungsplan
$(document).ready(function() {
	$('#hide_belegungsplan').hide();
});
//*/

function onBelegungsplanLoaded(){
		//alert('onBelegungsplanLoaded');
		$('#belegungsplan').show("slow");
		$('#hide_belegungsplan').show("slow");
	}

function show_belegungsplan(belegungsplanUrl) {
	//alert(belegungsplanUrl);
	//var p = {};
	//p[record_id] = 6;
	$('#belegungsplan').hide();
	//alert("<?php echo site_url('/belegungsplan_singleHouse/'.$houseId) ?>");
	//$('#belegungsplan').load("<?= site_url('/belegungsplan_singleHouse/'.$houseId) ?>", null, function(){onBelegungsplanLoaded()});
	$('#belegungsplan').load(belegungsplanUrl, null, function(){onBelegungsplanLoaded()});
	$('#show_belegungsplan').hide("slow");

}
function hide_belegungsplan() {
	//var p = {};
	//p[record_id] = 6;
	$('#belegungsplan').hide("slow");
	$('#show_belegungsplan').show("slow");
	$('#hide_belegungsplan').hide("slow");
}
//</script>

