// JavaScript Document

//******************************************************************
// Gestio dels menus
// Author: Mar Canet (mar.canet@gmail.com)
//******************************************************************
	
	//numSel = 0;
	selId = -1;
	
	function presionar( id ){
		
		if( selId!=id && id==1 ){
			$("#cajatexto1").animate({
			height: 'show'
			}, "slow");
			
		}
		if( selId!=id && id==2 ){
			$("#cajatexto2").animate({
			height: 'show'
			}, "slow");
		}
		if( selId==1 && id!=1 ){
			$("#cajatexto1").animate({
			height: 'hide'
			}, "slow");
		}
		if( selId==2 && id!=2 ){
			$("#cajatexto2").animate({
			height: 'hide'
			}, "slow");
		}
		
		selId = id;
	}