window.addEvent('domready', function()
{
	var texto = false;
	$('opcionesCatamarca').set({'opacity': 0});
	$('opcionesTucuman').set({'opacity': 0});
	$('opcionesJujuy').set({'opacity': 0});
	$('opcionesSalta').set({'opacity': 0});
	$('opcionesSantiago').set({'opacity': 0});
	
	var opciones = new Fx.Morph('opciones', {duration: 1000,link: 'cancel'});
	
	$('catamarca').addEvent('click',function()
					{
						if(!texto)
						{
							$('texto').dispose();
							texto = true;
						}
						$('textoDetalle').load('nortePaquetes.php?texto=catamarca');
						
						opciones.set({'opacity':0});
						$('opcionesTucuman').set({'opacity': 0});
						$('opcionesJujuy').set({'opacity': 0});
						$('opcionesSalta').set({'opacity': 0});
						$('opcionesSantiago').set({'opacity': 0});
						
						$('contenido').set({'height':950});
						
						opciones.start({'opacity':1,'height':350});
						$('opcionesCatamarca').set({'opacity': 1});
						
					
					});	
	$('tucuman').addEvent('click',function()
					{
						if(!texto)
						{
							$('texto').dispose();
							texto = true;
						}
											
						$('textoDetalle').load('nortePaquetes.php?texto=tucuman');
						
						opciones.set({'opacity':0});
						$('opcionesTucuman').set({'opacity': 0});
						$('opcionesJujuy').set({'opacity': 0});
						$('opcionesSalta').set({'opacity': 0});
						$('opcionesSantiago').set({'opacity': 0});
						$('opcionesCatamarca').set({'opacity': 0});
						
						
						
						opciones.start({'opacity':1,'height':350});
						$('opcionesTucuman').set({'opacity': 1});
					
					});
	$('jujuy').addEvent('click',function()
					{
						if(!texto)
						{
							$('texto').dispose();
							texto = true;
						}
											
						$('textoDetalle').load('nortePaquetes.php?texto=jujuy');
						
						opciones.set({'opacity':0});
						$('opcionesTucuman').set({'opacity': 0});
						$('opcionesJujuy').set({'opacity': 0});
						$('opcionesSalta').set({'opacity': 0});
						$('opcionesSantiago').set({'opacity': 0});
						$('opcionesCatamarca').set({'opacity': 0});
						
						opciones.start({'opacity':1,'height':350});
						$('opcionesJujuy').set({'opacity': 1});
					
					});
	$('salta').addEvent('click',function()
					{
						if(!texto)
						{
							$('texto').dispose();
							texto = true;
						}
											
						$('textoDetalle').load('nortePaquetes.php?texto=salta');
						
						opciones.set({'opacity':0});
						$('opcionesTucuman').set({'opacity': 0});
						$('opcionesJujuy').set({'opacity': 0});
						$('opcionesSalta').set({'opacity': 0});
						$('opcionesSantiago').set({'opacity': 0});
						$('opcionesCatamarca').set({'opacity': 0});
						
						opciones.start({'opacity':1,'height':350});
						$('opcionesSalta').set({'opacity': 1});
					
					});
	$('santiago').addEvent('click',function()
					{
						if(!texto)
						{
							$('texto').dispose();
							texto = true;
						}
						
						$('textoDetalle').load('nortePaquetes.php?texto=santiago');
						
						opciones.set({'opacity':0});
						$('opcionesTucuman').set({'opacity': 0});
						$('opcionesJujuy').set({'opacity': 0});
						$('opcionesSalta').set({'opacity': 0});
						$('opcionesSantiago').set({'opacity': 0});
						$('opcionesCatamarca').set({'opacity': 0});
						
						opciones.start({'opacity':1,'height':350});
						$('opcionesSantiago').set({'opacity': 1});
					});
		
		
});
