function load_stylesheet(url) {
	stylesheet = document.createElement('link');
	stylesheet.setAttribute('type','text/css');
	stylesheet.setAttribute('rel', 'stylesheet');
	stylesheet.setAttribute('href', url);
	document.getElementsByTagName('head')[0].appendChild(stylesheet);
}

load_stylesheet("/css/fancybox.css");
