$(window).load(function(){
	Cache = new Array();
	Cache['.info-rooms'] = $('.info-rooms');
	$.clientCoords = function() {
	     var dimensions = {width: 0, height: 0};
	     if (document.documentElement) {
	         dimensions.width = document.documentElement.offsetWidth;
	         dimensions.height = document.documentElement.offsetHeight;
	     } else if (window.innerWidth && window.innerHeight) {
	         dimensions.width = window.innerWidth;
	         dimensions.height = window.innerHeight;
	     }
	     return dimensions;
	};
	
	//Cache['.info-rooms'].show();
	
	$('.photo-hot-sm', '.hotel-block').mouseenter(function(){
		$('.info-rooms, .info-rooms02', this).show();
	});
	
	$('.photo-hot-sm', '.hotel-block').mouseleave(function(){
		$('.info-rooms, .info-rooms02', this).hide();	
	});
});
