/**
 * @author Piotr Fugiel
 * @copyright Domeny.pl
 */

//tour_reservation_block.js

var callendar;

Event.observe(window, 'load', function() {

	if ( $('callendarBtn') )
	{
		callendar = new Callendar('callendar', null, null, month_labels, day_labels);
		Event.observe('callendarBtn', 'mousedown', function(event) { callendar.show(event, 'date'); } );
	}
		
	}
);