
// Use onclick to make blocks clickable and still validate xhtml
// This is for adding the js-css for the hover state and cursor
//  so it doesn't appear clickable when it isn't for non-js users
var link=document.createElement("link")
link.setAttribute("rel", "stylesheet")
link.setAttribute("type", "text/css")
link.setAttribute("href", "css/js-styles.css")
document.getElementsByTagName("head")[0].appendChild(link)



