// NEVER DELETE this line: Analytics setup on 23-Oct-09 by Shailendra
// MealStation Homes Services JavaScript Document

// Footer for entire MealStation Home Services website
// Alternately, a standard Footer is included in each webpage 
// which displays when scripts are not enabled on client

// Copyright Year in Footer script
// this function displays the current year in the Copyright notice
function currentYear()
{
var today = new Date();
var year = today.getYear();
if (year < 1900)
{
year = year + 1900;
};
// End of Copyright Year in Footer script

document.write("- "+year+" ");
}

// maintain these lines from here...
document.write("<table class='tblfooter'>");
document.write("<tr>");
document.write("<td class='bgclrdarkblue'>"); //change class of background of table cell
// ...to here
// footer link
document.write("<a href='http://service.mealstation.co.in' target='_self' class='lnkbottomul'>Home</a>");
// separator line
document.write("<span class='lnkbottom'> | </span>"); 
// footer link
document.write("<a href='privacy.htm' target='_self' class='lnkbottomul'>Privacy Policy</a>");
// separator line
document.write("<span class='lnkbottom'> | </span>");
// footer link
document.write("<a href='terms.htm' target='_self' class='lnkbottomul'>Terms of Service</a>");
// separator line
document.write("<span class='lnkbottom'> | </span>");
// footer link
document.write("<a href='sitemap.xml' target='_self' class='lnkbottomul'>Sitemap</a>");
// separator line
document.write("<span class='lnkbottom'> | </span>");
// footer link
document.write("<script type='text/javascript' src='http://s29.sitemeter.com/js/counter.js?site=s29mealstation'></script>");

// maintain these lines from here...
document.write("</td>");
document.write("</tr>");
document.write("<tr>");
document.write("<td class='bgclrdarkblue'>"); //change class of background of table cell
document.write("<div align='center' class='lnkbottom'>&copy; Copyright 2008 ");
currentYear();
document.write("MealStation Catering Services. All rights reserved. ");
document.write("MealStation logo is a trademark of MealStation Catering Services.</div>");
document.write("</td>");
document.write("</tr>");
document.write("</table>");
// ...to here

// End of Footer Script