function toggleIt(what){
	$$('.arts').each(function(el){
		new Fx.Slide(el).hide();
	});

	$$('.link').each(function(el){
		$(el).set('style','background : #735d4c !important;');
	});		
	new Fx.Slide('f'+what).toggle();	
	$('s'+what).set('style','background : #231f20;');	
}//toggleIt

function newColor(id,color){
	$(id).setStyle('background','#'+color); 
	$(id).setStyle('color','#fff');
}//newColor

function oldColor(id,color){
	$(id).setStyle('color','#'+color); 
	$(id).setStyle('background','none');
}//oldColor