/*

	In the head of your document, place this:

	<script language="JavaScript" type="text/JavaScript" src="switcher.js"></script>

*/

function chooseStyle (newstyle){
	var expdate = new Date();
	expdate.setTime(expdate.getTime() + (1000*3600*24*365));
	document.cookie = 'style=' + newstyle + '; expires=' + expdate.toGMTString() + '; path=/';
	alert ("Congratulations!!!\nWe've changed the color of this site just for your baby!\n(You may need to reload the page, though.)");
	self.location = self.location;
}


if(document.cookie.indexOf('style=pistachio')>=0) {
	document.write('<link rel="stylesheet" type="text/css" href="styles/pistachio.css">\n');
} else if (document.cookie.indexOf('style=dandelion')>=0) {
	document.write('<link rel="stylesheet" type="text/css" href="styles/dandelion.css">\n');
} else if (document.cookie.indexOf('style=peach')>=0) {
	document.write('<link rel="stylesheet" type="text/css" href="styles/peach.css">\n');
} else { // style=lavendar
	document.write('<link rel="stylesheet" type="text/css" href="styles/lavendar.css">\n');
}
