var Site = new Class({
	do_search: function()
	{
		if ($('cid').value == '' || $('cod').value == '')
		{
			alert('Please choose dates first.');
			return;
		}
		window.open('http://www.booking.com/region/gr/corfu.en.html?aid=315047&amp;label=corfu_index&amp;checkin_monthday=' + cal_a_.selectedDate.getDate() + '&amp;checkin_year_month=' + cal_a_.selectedDate.getFullYear() + '-' + (cal_a_.selectedDate.getMonth() + 1) + '&amp;checkout_monthday=' + cal_b_.selectedDate.getDate() + '&amp;checkout_year_month=' + cal_b_.selectedDate.getFullYear() + '-' + (cal_b_.selectedDate.getMonth() + 1) + '&amp;group_adults=2');

	}
});
var site = null;
window.addEvent('domready', function(){site = new Site();});
