// navigation

norNav = new Array();
norNav[0] = "covers.html"
norNav[1] = "cover_breasts.html";
norNav[2] = "breasts_1.html";
norNav[3] = "breasts_12b.html";
norNav[4] = "breasts_lumps.html";
norNav[5] = "breasts_invert.html";
norNav[6] = "breasts_faff.html";
norNav[7] = "breasts_firm.html";
norNav[8] = "breasts_bras.html";
norNav[9] = "breasts_wonder.html";
norNav[10] = "breasts_big.html";
norNav[11] = "cover_thigh.html";
norNav[12] = "thigh_lovelife.html";
norNav[13] = "thigh_bigger.html";
norNav[14] = "thigh_big.html";
norNav[15] = "thigh_five.html";
norNav[16] = "thigh_whosays.html";
norNav[17] = "thigh_panicfree.html";
norNav[18] = "thigh_cellulite.html";
norNav[19] = "thigh_freerange.html";
norNav[20] = "thigh_stretch.html";
norNav[21] = "cover_periods.html";
norNav[22] = "periods_never.html";
norNav[23] = "periods_visit.html";
norNav[24] = "periods_calendar.html";
norNav[25] = "periods_diary.html";
norNav[26] = "periods_premenstrual.html";
norNav[27] = "periods_pms.html";
norNav[28] = "periods_hottie.html";
norNav[29] = "periods_pain.html";
norNav[30] = "periods_pads.html";
norNav[31] = "periods_tampons.html";
norNav[32] = "cover_skin.html";
norNav[33] = "skin_pimples.html";
norNav[34] = "skin_tanning.html";
norNav[35] = "skin_3.html";
norNav[36] = "skin_fake.html";
norNav[37] = "skin_bleach.html";
norNav[38] = "skin_teeth.html";
norNav[39] = "cover_smells.html";
norNav[40] = "smells_sweat.html";
norNav[41] = "smells_pits.html";
norNav[42] = "smells_parts.html";
norNav[43] = "smells_feet.html";
norNav[44] = "cover_cosm.html";
norNav[45] = "cosm_who.html";
norNav[46] = "cosm_guinea.html";
norNav[47] = "cosm_publicity.html";
norNav[48] = "cosm_amateur.html";
norNav[49] = "cosm_lipo.html";
norNav[50] = "cosm_clinic.html";
norNav[51] = "cosm_noses.html";
norNav[52] = "cosm_breasts.html";
norNav[53] = "cosm_collagen.html";
norNav[54] = "cosm_lip.html";
norNav[55] = "cover_girly.html";
norNav[56] = "girly_normal.html";
norNav[57] = "cover_penis.html";
norNav[58] = "penis_normal.html";


var theNavArray = norNav;

function nav(pos){
	var thisPos = parent.POS;
	switch(pos){
		case "+":
			thisPos +=1;
			break;
		case "-":
			thisPos -=1;
			break;
		default:
			thisPos = pos;
	}
	parent.frames[1].location = theNavArray[thisPos];
	var mag=theNavArray[thisPos].substr(0,3);
	headCheck(mag);
	footCheck(thisPos);
	parent.POS = thisPos;
}

function headCheck(mag){
	var head="head.html";
	theLoc = parent.frames[0].document.URL;
	x = theLoc.lastIndexOf("\/")+1;
	curHead = theLoc.substr(x);
	prefix = mag+"_";
	switch(prefix){
		case "bre_":
			break;
		case "thi_":
			break;
		case "per_":
			break;
		case "ski_":
			break;
		case "sme_":
			break;
		case "cos_":
			break;
		case "gir_":
			break;
		case "pen_":
			break;
		default:
			prefix="";
	}
	if(!(curHead == prefix+"head.html")){	
		parent.frames[0].location=prefix+"head.html";
	}
}

function footCheck(pos){
	theLoc = parent.frames[2].document.URL;
	x = theLoc.lastIndexOf("\/")+1;
	curFoot = theLoc.substr(x);
	if (pos > 0 && pos < theNavArray.length-1){
		foot = "foot_b.html";
	}else{
		if (pos == 0){
			foot = "foot_n.html";
		}else{
			foot = "foot_p.html";
		}
	}
	if (!(foot==curFoot)){
		parent.frames[2].location=foot;
	}
}







