window.addEvent('domready',function(){
	//attachmedia link -> target _blank
	$$('#nav1 li ul').each(function(block){
		var toggler = block.getPrevious();
		toggler.ref = block.addClass('hidden');
		toggler.addEvent('mouseenter',function(){this.ref.removeClass('hidden')});
		toggler.addEvent('mouseleave',function(){(function(){if(!this.prevent) this.ref.addClass('hidden')}).delay(100,this)});
		block.addEvents({
			'mouseenter':function(){this.getPrevious().prevent=true},
			'mouseleave':function(){this.getPrevious().prevent=false;this.addClass('hidden')}
		});
	});
	
	
	new sIFR('#title h2','css/sifr.swf',{fontSize:22,letterspacing:1});
	$E('#creditos a').addEvent('click',function(e){
		new Event(e).stop();
		window.open(this.get('href'))
	});
	
	
});