// JavaScript Document

/*
* Equalizer
*/

$(function() {
        var tallest = 0;
        var $columnsToEqualize = $(".bloc,.agenda_item_bloc");
        $columnsToEqualize.each(function() {
                var thisHeight = $(this).height();
                if (thisHeight > tallest) {
                        tallest = thisHeight;
                }
        });
        $columnsToEqualize.height(tallest);
});


/*
* PNG fix
*/

jQuery(document).ready(function() {
	if( jQuery.browser.msie && (jQuery.browser.version == "6.0") ) {
		DD_belatedPNG.fix('.transparence_png');
	}
});
