// JavaScript Document

// Yes, globals!

var months = new Array(13);
   months[0]  = "January";
   months[1]  = "February";
   months[2]  = "March";
   months[3]  = "April";
   months[4]  = "May";
   months[5]  = "June";
   months[6]  = "July";
   months[7]  = "August";
   months[8]  = "September";
   months[9]  = "October";
   months[10] = "November";
   months[11] = "December";
   
var now = new Date();

// Function paddock...

function whatsOn () {
  
  var thisMonth = months[now.getMonth()];
  var nextMonth = months[ (now.getMonth()+1) % 12 ];
  var thisFile = 'Whatson' + thisMonth + '.php';
  var nextFile = 'Whatson' + nextMonth + '.php';

  document.write(" <font color=\"#ffff00\"> <img src='templates/rainbow/rainbow1/images/r_03.gif' width='158' height='29' /> </font> ");
  
  document.write(" <center> ");
  document.write(" <big> ");
  document.write(" <strong> "); 
  
  document.write(" Visit the Rainbow Visions and Mixed Froots  <a href=\"http://www.facebook.com/group.php?gid=64171470641\" target=\"_blank\"><font color=\"#ffff00\"> Facebook Page </font></a><br /><br />  ");
  
  document.write(" <a href='bdirreg.html' target='_self'><font color=\"#00bbbb\"><big>Free Business Registration</big></a></font><br /><br /> ");
  
  document.write(" <font color=\"#ffff00\"> Click months below for full event lists </font><br /> ");
  //document.write(" <a href='WhatsonSeptember.php' target='_self' class='MonthEvent'><big>September</big></a><br /> ");
  //document.write(" <a href='WhatsonOctober.php' target='_self' class='MonthEvent'><big>October</big></a> ");
  
  document.write(" <font color=\"#ffff00\"> &#8658 </font> ");
  
  document.write(" <a href='WhatsonThisMonth.php' target='_self' class='MonthEvent'><big>" + thisMonth + "</big></a><br /> ");  
  
  document.write(" <font color=\"#ffff00\"> &#8658 </font> ");
  
  document.write(" <a href='WhatsonNextMonth.php' target='_self' class='MonthEvent'><big>" + nextMonth + "</big></a><br /> ");  
  
  document.write(" <hr color=\"#e97b16\"></strong> ");
  
  //   document.write(" <font color=\"#ffffff\"> </font><br /> ");
  //   document.write(" <font color=\"#ffffff\"> </font><hr color=\"#e97b16\"> ");
    
  document.write(" <a href='mixedFroots.html' target='_self'><img src='templates/rainbow/rainbow1/images/r_08.gif' class='nd' /></a> <br /> <br /> ");

  document.write(" <font color=\"#ffff00\"> MIXED FROOTS</font> will be at <a href=\"http://www.boulevardonbeaumont.com.au\" target=\"_blank\">Boulevard on Beaumont</a> , 131 Beaumont St Hamilton<br />  Last Friday Every Month <br /> 6.00 to 9.00 pm<br /> Entry: Gold coin donation<br /> Happy Hour 5.30-6.30pm ");
  
  document.write(" </big> ");  
  document.write(" </center> ");
  
  //document.write("<br />");
}

