ardivkids = new Array('breakfast', 'miracle', 'dreams', 'bit', 'freechildren', 'onechild', 'net', 'starlight', 'street', 'wings');

function gotolink(link){
	document.location = link;
}

function showdiv(divid){
	for(i=0;i<ardivkids.length;i++){
		if(divid == ardivkids[i]){
			document.getElementById(ardivkids[i]).style.display = "block";
		}else{
			document.getElementById(ardivkids[i]).style.display = "none";
		}
	}
}

function mouseOver(target,name_of_class) {
    PreviousClass = target.className;
    target.className = name_of_class;
}

function mouseOut(target) {
    target.className = PreviousClass;
}

function newsdiv(divnb){
		dnew = "n_"+ divnb;
		nlink = "m_"+ divnb;
		document.getElementById(nlink).style.display = "none";
		document.getElementById(dnew).style.display = "block";
}