// footerMenu.js

	var footerArray = 	[["/privacy_policy.html"		,	"Privacy Policy"	],
						["/sitemap.html"				, 	"Site Map"			]
                    	]; //end footerArray

	function displayFooterMenu()
	{
    	var footerArrayLength = footerArray.length;
    	var i = 0;

    	document.write("<p><table class=\"footerMenu\">");
		document.write("<tr>");

    	for(i = 0; i < footerArrayLength; i++)
    	{
    	    document.write("<td>");
    	    document.write("<a href=\"" + footerArray[i][0] + "\">");
    	    document.write(footerArray[i][1] + "</a>");
    	    document.write("</td>");
    	}//end for

		var currentDate = new Date();

		document.write("</tr>");
		document.write("<tr><td colspan=\" " + footerArrayLength + "\" class=\"centerAlign\">");
		document.write("Copyright &copy; " + currentDate.getFullYear());
		document.write("</td></tr>");
		document.write("<tr><td colspan=\" " + footerArrayLength + "\" class=\"centerAlign\">");
		document.write("I Love Yarn");
		document.write("</td></tr>");
    	document.write("</table></p>");
	}//end displayFooterMenu