function vh_sceneLoaded(){
	var now = new Date();
	now.setTime(now.getTime() + 7 * 24 * 60 * 60 * 1000); //extend expiration date by one month
	var visits = getCookie("counter");
	if (!visits) {
	     visits = 2;
	     timeStr2 = "Hello.., and..., ";
	   } else if (visits == 2){
	       visits = parseInt(visits) + 1;
	       timeStr2 = "Good to see you again, and..., "; 
	   } else if (visits == 3){
	   	   visits = parseInt(visits) + 1;
	   	   timeStr2 = "Back for more?..., ";
	   } else {
	   		parseInt(visits) +1;
	   }
	
	{
	d = new Date();
	mins = d.getMinutes();
	hours = d.getHours();

	if(hours < 5){
		timeStr = 'Man,..You are working pretty late... get some sleep already...,.. ';
	}else if(hours < 12){
		timeStr = 'Good Morning...,.. ';
	}else if (hours < 17){
		hours = hours - 12;
		timeStr = 'Good Afternoon Dude...,... ';
	}else{
		hours = hours - 12;
		timeStr = 'Good Evening Dude...,... ';
    }

	
    if (hours == 0){
    	hours = 12;
	}

	if(mins == 0){
		str = timeStr2 + timeStr + "It is " + hours + "o'clock... Yeah, this is my personal page... Visit it often to get up to date info on where I will be appearing and what other areas of this website have some of my fucken words of wisdom. Yup, profanity is our friend, I've picked up some bad habits hanging out in the shop... what can I say? Click on my other scenes below... If you dig me, then join my fan club... later";
	}
	else {
		str = timeStr2 + timeStr + "It is " + mins +" past " + hours + "... Yeah, this is my personal page... Visit it often to get up to date info on where I'll be appearing and what other areas of this website have some of my fucken words of wisdom... Yup, profanity is our friend, I've picked up some bad habits hanging out in the shop... what can I say? Click on my other scenes below... If you dig me, then join my fan club... later";
	}
	sayText(str,1,1,3); 
	setCookie("counter", visits, now);
	}
}