/*** SCRIPT TO GREET SITE VISITORS ***/
/** Include inline wherever you want the greeting to appear:
    EXAMPLE: 
  	<div id="welcome">
		<script type="text/javascript">document.write(greet())</script>
	</div>
**/

function greet(){
var currentTime = new Date()
var hours = currentTime.getHours()
if(hours > 11){
return ("Good afternoon");
} else {
return ("Good morning");
}
}