/** col-fix.js adapte les hauteurs de blocs pour les pages custom id **/
/** compatible firefox, ie6, ie7                                     **/

	$(document).ready(function() {
		if(document.getElementById('homebt_cols-right')) {
			h_col_l = document.getElementById('homebt_cols-left').offsetHeight;
			h_col_r = document.getElementById('homebt_cols-right').offsetHeight;
			
			if ( h_col_l > h_col_r ) {
				
				document.getElementById('homebt_cols-right').style.height = h_col_l+'px';
				
			} else {
				
				document.getElementById('homebt_cols-left').style.height = h_col_r+'px';
				
			}
		}
	});
