
$(document).ready(function(){
	$('.FF_searchPage .FF_leftCol, .FF_propertyPage .FF_leftCol, .FF_developmentPage .FF_leftCol').height($('.FF_searchPage, .FF_propertyPage, .FF_developmentPage').height());
	
	$('button, input[type="button"], input[type="submit"]').css('cursor', 'pointer').addClass('FF_button');
	$('button, input[type="button"], input[type="submit"]').hover(
	  function () {
	    $(this).addClass('FF_buttonHover');
	  }, 
	  function () {
	    $(this).removeClass('FF_buttonHover');
	  }
	);
	
});
