//csi : fix height for estate rows
$(window).load(function() {
	$(".estate-row").each(function(i){
		var unitHeight = $(this).height();
		$(this).find('.pSmall .inner').height(unitHeight-35);
	});
});

$(document).ready(function() {

	// csi : display the large img
	$(".smallPics img").each(function(){

	var largeImg = $(this).attr('src').replace(/type=5/g,'type=6'); //type 5 = thumbnail, type 6 = large image

	$(this)
			.click( function() {
				$('.expo_large_img').attr( 'src', largeImg );
			})
			.css('cursor', 'pointer');
	});
	
	// csi : display phone number
	/*$('.hpMod .phone span')
		.hide()
		.eq(0).show();
	$('.hpMod .tabsBoxNav_hp li').each(function(index) {
		$(this).click(function() {
			$('.hpMod .phone span')
				.hide()
				.eq(index).show();
		});
	});*/

});

