// JavaScript Document
function getLink(id, linkText, school)
{
	var link = '<a href="javascript:;" class="secondary_title secondary_slider_link" onclick="toggleText(\'' + id + '\');"><b>' + linkText + '&nbsp;&nbsp;</b></a>';

	if(school)
	link +=  '- &nbsp;&nbsp;<b>' + school + '</b>&nbsp;&nbsp;&nbsp;';
	link += '<a href="javascript:;" class="secondary_title secondary_slider_link  secondary_more_link" onclick="toggleText(\'' + id + '\');" name="f' + id + '">(click for more)</a><br />';
	document.write(link);
}

function getMoreLink(id)
{
	var link = 
	document.write(link);
}    

function toggleText(id, element)
{	
	if(document.getElementsByName('f' + id).item(0).innerHTML == "(click for more)")
	{
		document.getElementsByName('f' + id).item(0).innerHTML = "(click for less)";
		if(navigator.userAgent.indexOf("MSIE") >= 0)
			document.getElementById("footer").style.display = "none";
	}
	else
		document.getElementsByName('f' + id).item(0).innerHTML = "(click for more)";	
	toggleSlide(id);
}