jQuery(function() {
	setTimeout("resizeCol()", 500);
	setTimeout("resizeCol()", 1000);
	setTimeout("resizeCol()", 2000);
	
	
});

function resizeCol() {
//	var labelBWidth = jQuery('.subpageLabelB').width();
//	jQuery('.subpageHead').css('width', labelBWidth);
//	
//	
//	if(jQuery('#leftCol').height() >= jQuery('#rightCol').height()) {
//		jQuery('#rightCol').css('height', jQuery('#leftCol').height());
//	} else {
//		jQuery('#leftCol').css('height', jQuery('#rightCol').height());
//	}
//	
//	if(jQuery('#leftCol').height() < 287) {
//		jQuery('#leftCol').css('height', 287);
//	}
}