window.addEvent('domready', function() {
try {
		//myCal = new Calendar({ date: 'd/m/Y' }, { direction: 1, navigation: 1, pad: 2 } );
		myCal1 = new Calendar({ date: 'd/m/Y' }, { direction: 1, tweak: { x: 6, y: 0 }});
		 
		$('search_form').getElement('button[class=clear_date]').addEvent('click', function(e) {
			$('date').setProperty('value', 'Arrival date');
		});
	} catch(e) {
		$$('div.calendar')[0].dispose();
		jslog.error('Problem with MooTools occurred: ' + e.message );
	}
});