window.addEvent('domready',function(){
	new sIFR('#cont2 h1','css/italic.swf',{fontSize:20,shadowColor: '#B5A172',shadowDistanceX: 0,	shadowDistanceY: 38});
	new sIFR('#cont3 h2','css/italic.swf',{fontSize:16,shadowColor: '000000',shadowDistanceX: 0,	shadowDistanceY: 38});
	new sIFR('#cont3 h4','css/italic.swf',{fontSize:14,shadowColor: '000000',shadowDistanceX: 0,	shadowDistanceY: 0});
	
	var fotos = $('fotos');
	var list = $('list');
	var thumb = $('thumb');
	if(fotos && list && thumb){
		list.addEvent('click',function(){fotos.addClass('list'); this.addClass('active');thumb.removeClass('active')});
		thumb.addEvent('click',function(){fotos.removeClass('list'); this.addClass('active');list.removeClass('active')});
	}
	
	$$('.del, .group span.delete').addEvents({
		'mouseover':function(){
			this.addClass('hover')
		},
		'mouseleave':function(){
			this.removeClass('hover')
		}
	});
});