function toggleFaqAnswer(id){
	
	var answer_id = 'answer_'+id;
	
	if($(answer_id).style == 'opacity: 0;'){
		new Effect.Appear(answer_id, { from: 0.0, to: 1.0, duration: 0.2 });
	}else{
		new Effect.Appear(answer_id, { from: 1.0, to: 0.0, duration: 0.2 });
	}
	
}

var Driftcenter = {
		Showitem: function(id, path){
			
			url = 'showitem/'+id+'/';
			if(path != 'none'){
				url = path+url;
			}
			//alert(Toolbox.makeURL)
			Toolbox.setLocation(url);
		}
}
