// Function to change the page color
function bg(color,set)
{
		document.getElementById('body').style.backgroundColor='#'+color;
		for(i=1;i<=6;i++)
		{
				document.getElementById('sub'+i+'a').style.backgroundColor='#'+color;
		}
		// Set a cookie to remember the color
		if (set == 'set')
		{
			var expiry = new Date();
			expiry.setFullYear(expiry.getFullYear()+1);
			document.cookie = "color=#"+color+"; expires= " + expiry.toGMTString() + "; path=/; domain=.jasonb.com";
		}
}