﻿$(window).load(function () {
	if($(".chaletWrapper").size()>0){
		var chaletBigHeight = 0
		$(".chaletWrapper").each(function () {
			if ($(this).height() > chaletBigHeight) {
				chaletBigHeight = $(this).height();
			}
		});
		$(".chaletWrapper").height(chaletBigHeight);
	}
});
