var arr_status = new Array();
function showHide(id,img){
	if(arr_status[id] == null){
		if(id != 'why'){
			new Effect.BlindUp('why');
		}
		if(id != 'how'){
			new Effect.BlindUp('how');
		}
		if(id != 'black'){
			new Effect.BlindUp('black');
		}
		if(id != 'recipes'){
			new Effect.BlindUp('recipes');
		}
		if(id != 'bianca'){
			new Effect.BlindUp('bianca');
		}
		new Effect.BlindDown(id);
		arr_status[id] = 1;
		document.getElementById('frame').src = 'images/frameimages/'+img+'.gif';
	}else{
		new Effect.BlindUp(id);
		arr_status[id] = null;
		//document.getElementById('frame').src = 'images/frameimages/bottle.gif';
	}
}

function showHideFaq(id,img){
	if(arr_status[id] == null){
		if(id != 'why'){
			new Effect.BlindUp('why');
		}
		if(id != 'made'){
			new Effect.BlindUp('made');
		}
		if(id != 'black'){
			new Effect.BlindUp('black');
		}
		if(id != 'black2'){
			new Effect.BlindUp('black2');
		}
		if(id != 'natural'){
			new Effect.BlindUp('natural');
		}
		if(id != 'drink'){
			new Effect.BlindUp('drink');
		}
		new Effect.BlindDown(id);
		arr_status[id] = 1;
		document.getElementById('frame').src = 'images/frameimages/'+img+'.gif';
	}else{
		new Effect.BlindUp(id);
		arr_status[id] = null;
		//document.getElementById('frame').src = 'images/frameimages/bottle.gif';
	}
}

