// JavaScript Document
function change(id, newClass) {
	identity=document.getElementById(id);
	identity.className=newClass;
}
//plaatje positioneren
function girlheight() {
	var wheight = document.body.clientHeight-244;
	if(wheight <= 358) 
	{
		wheight = 358;
	}
	document.getElementById('girl').style.top = wheight+'px';
}
//string controleren
function checkIt(string)
{
	place = detect.indexOf(string) + 1;
	return place;
}

//detectie browsers
var detect = navigator.userAgent.toLowerCase();
var browser;

//Safari?
if (checkIt('safari')) browser = "no"
else browser = "yes"

//Niet uitvoeren bij Safari
if(browser == "yes") window.onresize = girlheight;
