// JavaScript Document
fullurl = window.location.href ;
filename = fullurl.substring(fullurl.lastIndexOf("/")+1);
//alert(filename);

document.write("<table width='100%' border='0' cellspacing='0' cellpadding='0'>");
document.write("<tr>");
document.write("<td><a href='eve_thin_stud.html'");
		if (filename=="eve_thin_stud.html")
				document.write("class='ti_tbl_button_selected'");
		else	
				document.write("class='ti_tbl_button'");
		document.write(">Home</a></td>");
		
document.write("<td><a href='eve_thinkqueststud2010.html'");
		if (filename=="eve_thinkqueststud2010.html")
				document.write("class='ti_tbl_button_selected'");
		else	
				document.write("class='ti_tbl_button'");
		document.write(">THINKQUEST-2010</a></td>");		
		
document.write("<td><a href='eve_authorguidestud.html'");
		if (filename=="eve_authorguidestud.html")
				document.write("class='ti_tbl_button_selected'");
		else	
				document.write("class='ti_tbl_button'");
		document.write(">Author Guidelines</a></td>");
		
document.write("<td><a href='eve_committeestud.html'");
		if (filename=="eve_committeestud.html")
				document.write("class='ti_tbl_button_selected'");
		else	
				document.write("class='ti_tbl_button'");
		document.write(">Panelist</a></td>");		
		
document.write("</tr>");
document.write("</table>");
