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

