//****************************************************************************
// 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($(".altura1"));
	equalHeight($(".altura2"));
	equalHeight($("ul.asociaciones_listado li a"));
});
//Usuario Contraseņa
$(function()
{
	$("#usuario, #contra")
		.each(function() { if(!$(this).val().length) $(this).addClass("placeholder"); })
		.focus(function() { $(this).removeClass("placeholder"); })
		.blur(function() { if(!$(this).val().length) $(this).addClass("placeholder"); })
	;
});








