/* fn.js */

jQuery(function(){
	jQuery("#diagram a").each(function(){
		if(jQuery(this).attr("href") == window.location.pathname){
			jQuery(this).addClass("selected");
		}
	});
	
    try{document.execCommand("BackgroundImageCache", false, true);} catch(err){}
});