You can change the appearance of your site
With a click of a button
<LINK href="style1.css" rel=stylesheet type=text/css id=swapit>
<script type="text/javascript">
function switchStyles() {
elm=document.getElementById("swapit")
if(elm.href.indexOf("style1.css")!=-1) {
elm.href = "style2.css"
document.f1.b1.value="Back to Style One"
}
else {
elm.href = "style1.css"
document.f1.b1.value="Press for Style Two"
}
}
</script>
<form name="f1">
<input type=button name="b1" value="Switch Styles" onclick="switchStyles();">
</form>