/**NOVEDADES HOME**/
window.addEvent('domready',function(){
		try{
			var novedades=$('novedades_home');
			//alert(novedades.id);
			var h2=novedades.getFirst();
			var novedad=novedades.getLast();
			var topNovedades=novedades.getTop();
			var leftNovedades=novedades.getLeft();
			var heightInicialNovedades=novedades.getSize().size.y;
			var heightFinalNovedades=391;//novedades.getSize().size.y;
			var heightInicialNovedad=novedad.getSize().size.y;
			novedades.setStyles({
				'position':'absolute',
				'left':leftNovedades,
				'z-index':50,
				'height':heightInicialNovedades,
				'top':topNovedades,
				'opacity':1
			});
			window.addEvent('resize',function(){
				novedades.setStyles({'left':$('boletin').getLeft()});
			});
			var fx,fx2;
			novedades.addEvent('mouseenter',function(){
				this.setStyles({'background-color':'#FFF'});
				novedad.setStyles({'background-color':'#FFF'});
				try{fx.stop();}catch(e){}
				try{fx2.stop();}catch(e){}
				fx = new Fx.Styles(this, {duration:300, wait:false,onComplete:function(){
					novedades.setStyles({'background-color':'#FFF'});
					novedad.setStyles({'background-color':'#FFF'});
					h2.setStyles('background-position: 0 -37px');
				}});
				fx2 = new Fx.Styles(novedad, {duration:300, wait:false});
				fx.start({'top':parseInt(topNovedades-233),'height':heightFinalNovedades,'opacity':0.93});
				fx2.start({'height':353});
			});
			novedades.addEvent('mouseleave',function(){
				try{fx.stop();}catch(e){}
				try{fx2.stop();}catch(e){}
				fx = new Fx.Styles(this, {duration:300, wait:false,onComplete:function(){
					novedades.setStyles({
						'background-color':'transparent',
						'border':'0 none'
					});
					h2.setStyles('background-position: 0 0');
				}});
				fx2 = new Fx.Styles(novedad, {duration:300, wait:false,onComplete:function(){
					novedad.removeProperty('style');
				}});
				fx.start({'top':topNovedades,'height':heightInicialNovedades,'opacity':1});
				fx2.start({'height':heightInicialNovedad});
			});
		}catch(E){}
});
