FIEM = {
	inicio : function () {
		var th = $("#alojarejilla tbody tr th");
		var primerth = $(th[0]);
		
		if(primerth.attr("id") != undefined) {
			$("#alojarejilla tr:has(td)[class!=" + primerth.attr("id") + "]").hide();
			primerth.addClass("abierto");
			th.click(function(){
				$(this).toggleClass("abierto");
				$("#alojarejilla tr." + $(this).attr("id")).toggle();
			});
		}
	}
}

$(document).ready( FIEM.inicio );