
$(document).ready(function() {
	
	try {
		$('.FF_leftCol, .FF_rightCol').equalHeight();
	}
	catch(ex) {
		
	}
	
	$('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');
	  }
	);
	
});

