// JavaScript Document

//This variable is used to "import" the Subject Guide table into different pages (index.html and Subjs.html)
//so that the pull-down menu of Subject Guide topics can be defined in one place (here) and used anywhere
var subjGdMenu = '<option selected="selected">Select a Topic</option><option value="subject/Evidence">Evidence-Based Medicine</option><option value="subject/Nursing">Nursing</option>';


function insertSubjGdMenu() {
	document.getElementById('EB_Subject').innerHTML = subjGdMenu;
}
