/**
* http://stackoverflow.com/questions/524696/how-to-create-a-style-tag-with-javascript/524717#524717
* Dynamically creating a stylesheet link
* Allows plugin to be completely self contained and doesn't break w3c strict standards
*/
var ss = document.createElement("link");
ss.type = "text/css";
ss.rel = "stylesheet";
ss.href = "./modules/plugins/events/events.css";
document.getElementsByTagName("head")[0].appendChild(ss);
