$(window).load(function(){
  
  if ($('.col_inner').length>0) {
	  elms = $('.col_inner');
	  max_h = $(elms[0]).height();
	  for (i=0;i<elms.length;i++){
		if ($(elms[i]).height()>max_h){
			max_h = $(elms[i]).height();
		}
	  }
	  $('.col_inner').css('height',max_h);
  }
  
  if ($('.property_info ul').length>0) {
	  elms = $('.property_info ul');
	  max_h = $(elms[0]).height();
	  for (i=0;i<elms.length;i++){
		if ($(elms[i]).height()>max_h){
			max_h = $(elms[i]).height();
		}
	  }
	  $('.property_info ul').css('height',max_h);
  }
  
  $('#facebook').bind("mouseenter", function(e) {
    $('.facebook_inner').show('fast');
  });
  
  $('#facebook').bind("mouseleave", function(e) {
    $('.facebook_inner').hide('fast');
  });

})
