
$(document).ready(function(){
	$.datepicker.formatDate('yy-mm-dd');
	RefreshAccommodation();
	//alert($('#centerAreaContent').css('height'));
	//alert($('.otherLefSide').css('height'));
	var centerArea;
	var otherLeftSide;
	var searhDisponibilidad;
	centerArea=parseFloat($('#centerAreaContent').css('height').replace('px',''));
	otherLeftSide=parseFloat($('.otherLefSide').css('height').replace('px',''));
	searhDisponibilidad=parseFloat($('#searchDisponibilidad').css('height').replace('px',''));
	var newsize;
	newsize=otherLeftSide+(centerArea-otherLeftSide)-searhDisponibilidad;
	//alert(newsize);
	$('.otherLefSide').css('height',newsize+'px');
	//alert($('.otherLefSide').css('height'));
});


