// 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_thinint.html'");
		if (filename=="eve_thinint.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_thinkquest2010.html'");
		if (filename=="eve_thinkquest2010.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_authorguide.html'");
		if (filename=="eve_authorguide.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_committee.html'");
		if (filename=="eve_committee.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>");
