// navigationhhNav = new Array();hhNav[0] = "covers.html"hhNav[1] = "cover_lotions.html";hhNav[2] = "lotions_moist.html";hhNav[3] = "lotions_secret.html";hhNav[4] = "lotions_legal.html";hhNav[5] = "lotions_aphrodite.html";hhNav[6] = "lotions_truth.html";hhNav[7] = "lotions_science.html";hhNav[8] = "lotions_french.html";hhNav[9] = "lotions_bonjour.html";hhNav[10] = "lotions_nature.html";hhNav[11] = "lotions_briny.html";hhNav[12] = "lotions_hardsell.html";hhNav[13] = "lotions_cleanse.html";hhNav[14] = "lotions_scrubs.html";hhNav[15] = "lotions_exfoliation.html";hhNav[16] = "lotions_hypo.html";hhNav[17] = "lotions_safety.html";hhNav[18] = "cover_makeup.html";hhNav[19] = "makeup_howmuch.html";hhNav[20] = "makeup_makeover.html";hhNav[21] = "makeup_essential.html";hhNav[22] = "makeup_beauty.html";hhNav[23] = "makeup_lollies.html";hhNav[24] = "makeup_trends.html";hhNav[25] = "makeup_snake.html";hhNav[26] = "makeup_shame.html";hhNav[27] = "makeup_blush.html";hhNav[28] = "makeup_eyes.html";hhNav[29] = "makeup_animal.html";hhNav[30] = "makeup_lippy.html";hhNav[31] = "cover_beauty.html";hhNav[32] = "beauty_cinder.html";hhNav[33] = "cover_perfume.html";hhNav[34] = "perfume_pongs.html";hhNav[35] = "perfume_innocence.html";hhNav[36] = "perfume_stinko.html";hhNav[37] = "cover_hair.html";hhNav[38] = "hair_gotit.html";hhNav[39] = "hair_feminist.html";hhNav[40] = "hair_off.html";hhNav[41] = "hair_furry.html";var theNavArray = hhNav;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 "lot_":			break;		case "mak_":			break;		case "bea_":			break;		case "per_":			break;		case "hai_":			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;	}}