//****************************************************************************
// XLI																		 *
//****************************************************************************


// Columnas con igual altura
function equalHeight(group) {
	tallest = 0;
	group.each(function() {
		thisHeight = $(this).height();
		if(thisHeight > tallest) {
			tallest = thisHeight;
		}
	});
	group.height(tallest);
	
}
var mismaAltura = function() {
	equalHeight($(".column"));
	equalHeight($(".altura2"));
//	if($.jcarousel) jQuery('#mycarousel').jcarousel();
}
//$(document).ready(mismaAltura);
$(window).load(mismaAltura);


// Overlay
/*$(function() {
	try
	{
		$("a.zoom[rel]").overlay();
	}
	catch (E)
	{
	}
});      */
