// Set the time variables

var d = new Date();
var time = d.getHours();
var x=1;
var y=1;
var z=1;

if (time < 12) 
  {
  x=1;
  }
else if (time >=12 && time <18)
  {
  x=2;
  }
else
  {
  x=3;
  }

// Set the weekday variables

var d = new Date();
theDay=d.getDay();
switch (theDay)
{}
// Sunday=0, Mon=1, Tue=2, Wed=3, Thu=4, Fri=5, Sat=6 //

y=(theDay);

z=x*y;
//  document.write(z)
 
//  21 slogans 

switch (z)
{
case 1:
  document.write("Oak Hill Trails - just for the hike of it");
  break;
case 2:
  document.write("The hills are alive with Oak Hill Trails");   
  break;
case 3:
  document.write("Get your Oak Hill Trails out");   
  break;
case 4:
  document.write("Wild on Oak Hill Trails");   
  break;
case 5:
  document.write("Let go on Oak Hill Trails");   
  break;
case 6:
  document.write("Where the hill is Oak Hill Trails?");   
  break;
case 7:
  document.write("You can't beat Oak Hill Trails");   
  break;
case 8:
  document.write("Just Oak Hill Trails");   
  break;
case 9:
  document.write("I'd sleep with Oak Hill Trails");   
  break;
case 10:
  document.write("Oak Hill Trails. See more. Do more.");  
  break;   
case 11:
  document.write("I'd walk a mile for Oak Hill Trails");
  break;
case 12:
   document.write("The magic of Oak Hill Trails");   
  break;
case 13:
  document.write("Keep Oak Hill Wild");  
  break;
case 14:
  document.write("Oak Hill Trails Make Connections");   
  break;
case 15:
  document.write("Oak Hill Trails, the meandering way...");     
  break;
case 16:
  document.write("Oak Hill Trails - spice up your life");  
  break;
case 17:
  document.write("Every Oak Hill Trails has a story");  
  break;
case 18:
  document.write("Oak Hill Trails rock!!");    
  break;
case 19:
  document.write("Oak Hill Trails - just for the hill of it");   
  break;
case 20:
  document.write("Connect with Oak Hill Trails");     
  break;
case 21:
  document.write("Endless possibilities with Oak Hill Trails");    
  break;
}
