var morph=new Class({initialize:function(seccion){switch(seccion){case'noticias':var color='#F57D31';var loadSeccion='noticias';break;case'obras':var color='#DFCC1A';var loadSeccion='obras';break;case'gestion':var color='#E11A53';var tituloSeccion='GESTIÓN';var loadSeccion='gestion';break;case'cultura':var color='#3B5E98';var loadSeccion='cultura';break;default:var color='#F57D31';var loadSeccion='noticias';break;};$('titulo_principal').setStyle('color',color);$('subUno').setStyle('color',color);$('subDos').setStyle('color',color);$('morphLeft').setStyles({width:'320px'});$('principal').setStyles({height:'363px'});$('botones_principal').setStyles({height:'20px',backgroundColor:color});$('btn_contraer').setStyles({display:'none'});$('btn_sub1').setStyles({backgroundColor:color,height:'20px',width:'169px'});$('btn_sub2').setStyles({backgroundColor:color,height:'20px',width:'169px'});$('anteriores').setStyle('display','none');$('estado').value="";this.cargaSmall(seccion);},cargaSmall:function(seccion){this.cargaSub(seccion);var req=new Request({method:'get',url:'textos.asp?id='+$("uno").value+'&seccion='+seccion+'&titulo=si',onSuccess:function(responseHTML){$('titulo_principal').set('html',responseHTML);}}).send();var req=new Request({method:'get',url:'textos.asp?id='+$("uno").value+'&seccion='+seccion,onSuccess:function(responseHTML){responseHTML=responseHTML.substring(0,450);if(responseHTML.length>=450){responseHTML=responseHTML+" ..."};$('texto_principal').set('html',responseHTML);}}).send();},cargaBig:function(seccion){this.cargaSub(seccion);var req=new Request({method:'get',url:'textos.asp?id='+$("uno").value+'&seccion='+seccion+'&titulo=si',onSuccess:function(responseHTML){$('titulo_principal').set('html',responseHTML);}}).send();var req=new Request({method:'get',url:'textos.asp?id='+$("uno").value+'&seccion='+seccion,onSuccess:function(responseHTML){$('texto_principal').set('html',responseHTML);}}).send();},cargaSub:function(seccion){var req=new Request({method:'get',url:'textos.asp?id='+$("dos").value+'&seccion='+seccion+'&titulo=si',onSuccess:function(responseHTML){$('subUno').set('html',responseHTML);var req2=new Request({method:'get',url:'textos.asp?id='+$("tres").value+'&seccion='+seccion+'&titulo=si',onSuccess:function(responseHTML){$('subDos').set('html',responseHTML);}}).send();}}).send();},swap:function(n,seccion){a_uno=$('uno').value;a_dos=$('dos').value;a_tres=$('tres').value;if(n=='dos'){$('uno').value=a_dos;$('dos').value=a_uno;$('tres').value=a_tres;};if(n=='tres'){$('uno').value=a_tres;$('dos').value=a_dos;$('tres').value=a_uno;};if($('estado').value==""){this.cargaSmall(seccion);}else{this.cargaBig(seccion);$('imgs_'+$('uno').value).setStyle('display','none');$('imgs_'+$('dos').value).setStyle('display','none');$('imgs_'+$('tres').value).setStyle('display','none');$('imgs_'+$('uno').value).setStyle('display','block');};},desplegar:function(seccion){var req=new Request({method:'get',url:'textos.asp?id='+$("uno").value+'&seccion='+seccion,onError:function(){alert('No es posible cargar los datos!')},onSuccess:function(responseHTML){$('estado').value="open";var baseFX=new Fx.Morph('base_principal',{duration:'short',transition:Fx.Transitions.Sine.easeOut,onStart:function(){var principalFX=new Fx.Morph('morphLeft',{duration:'short',transition:Fx.Transitions.Sine.easeOut,onStart:function(){var principalFX=new Fx.Morph('principal',{duration:'short',transition:Fx.Transitions.Sine.easeOut,onStart:function(){$('principal').setStyle('height','auto');$('texto_principal').set('html',responseHTML);$('morphLeft').setStyle('marginBottom','15px');$('imgs_'+$('uno').value).setStyle('display','block');}}).start({'width':[$('principal').getStyle('width').toInt(),870]});}}).start({'width':[$('morphLeft').getStyle('width').toInt(),900]});},onComplete:function(){$('btn_desplegar').setStyle('display','none');$('btn_contraer').setStyle('display','block');$('logo').setStyle('display','block');$('anteriores').setStyle('display','block');}}).start({'width':[$('base_principal').getStyle('width').toInt(),870]});}}).send();},contraer:function(seccion){var req=new Request({method:'get',url:'textos.asp?id='+$("uno").value+'&seccion='+seccion,onError:function(){alert('No es posible cargar los datos!')},onSuccess:function(responseHTML){responseHTML=responseHTML.substring(0,450);if(responseHTML.length>=450){responseHTML=responseHTML+" ..."};$('estado').value="";var baseFX=new Fx.Morph('base_principal',{duration:'short',transition:Fx.Transitions.Sine.easeOut,onStart:function(){$('logo').setStyle('display','none');var principalFX=new Fx.Morph('morphLeft',{duration:'short',transition:Fx.Transitions.Sine.easeOut,onStart:function(){var principalFX=new Fx.Morph('principal',{duration:'short',transition:Fx.Transitions.Sine.easeOut,onStart:function(){$('principal').setStyles({height:'363px',overflow:'hidden'});$('texto_principal').set('html',responseHTML);$('morphLeft').setStyle('marginBottom','15px');$('imgs_'+$('uno').value).setStyle('display','none');$('imgs_'+$('dos').value).setStyle('display','none');$('imgs_'+$('tres').value).setStyle('display','none');}}).start({'width':[$('principal').getStyle('width').toInt(),290]});}}).start({'width':[$('morphLeft').getStyle('width').toInt(),320]});},onComplete:function(){$('btn_desplegar').setStyle('display','block');$('btn_contraer').setStyle('display','none');$('anteriores').setStyle('display','none');}}).start({'width':[$('base_principal').getStyle('width').toInt(),290]});}}).send();}});
