﻿//Function to assign t the value of the Title section of page following the second colon
function titletest ()
{		t="";
		t=document.title.toString();
		var c = t.indexOf(":")+1;
		var c = t.indexOf(":",c)+2;
		t = t.substring(c)
//		alert(t)
//		return t;

}

//Call above function
titletest();

//Iniatialize ssmenu printing section
var smenu = "";

/*If units for pages.  Creates possibility of eliminating current location 
from smenus
*/

if(! (t == "General"))
{
smenu += '<a href="/facstaff/index.html">&laquo; Fac/Staff Start Page</a>';
}


smenu += '<a href="/facstaff/FacEnrichment.pdf">Faculty Enrichment Form</a>';

smenu += '<a href="PhotoGuide.pdf">Digital Photo Filing</a>';

smenu += '<a href="/about/edirect.php">Email Directory</a>';

smenu += '<a href="/business/bforms.html">Business Office Forms</a>';

if(! (t == "Slideshows"))
{
smenu += '<a href="/facstaff/protocolslides.html">Slideshow Protocols</a>';
}

smenu += '<img src="/images/lock.jpg" align="right"><a href="facpolicies.php">Faculty Handbook</a>';

if(! (t == "Email Guide"))
{
smenu += '<img src="/images/lock.jpg" align="right"><a href="/facstaff/eguide.php">RBC Email Guide</a>';
}

if(! (t == "Back Door"))
{
smenu += '<img src="/images/lock.jpg" align="right"><a href="http://www.rosedale.edu/dbcontent/">Web Content</a>';
}

if(! (t == "Classroom Technology"))
{
smenu += '<img src="/images/lock.jpg" align="right"><a href="/facstaff/classtechno.php">Classroom Technology</a>';
}


smenu += '<a href="http://www.rosedale.edu/studentapps/quiz/index.php">Login to Quizzes</a>';

document.write(smenu);

