function var_dump(obj) {
	if(typeof obj == "object") {
		return "Type: "+typeof(obj)+((obj.constructor) ? "\nConstructor: "+obj.constructor : "")+"\nValue: " + obj;
	} else {
		return "Type: "+typeof(obj)+"\nValue: "+obj;
	}
}//end function var_dump



window.addEvent('domready', function() { 
	anreise  = new Calendar({ anreise: 'Y-m-d' }, {offset: 1, draggable: false, direction: 1, tweak: { x: 6, y: 0 }});
	departure_date_value  = new Calendar({ departure_date_value: 'Y-m-d' }, {offset: 1, draggable: false, direction: 1, tweak: { x: 6, y: 0 }});

	var url = "CultBooking_1.5.2.2/index.php?hotel_id=2784-3347";
	new Ajax(url,{
		method:'post',
		update: $('log')
	}).request();

	
});

