// 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_thinprj.html'");
		if (filename=="eve_thinprj.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_thinprj_cri.html'");
		if (filename=="eve_thinprj_cri.html")
				document.write("class='ti_tbl_button_selected'");
		else	
				document.write("class='ti_tbl_button'");
		document.write(">Entry Criteria</a></td>");		
		
document.write("<td><a href='eve_thinprj_evecri.html'");
		if (filename=="eve_thinprj_evecri.html")
				document.write("class='ti_tbl_button_selected'");
		else	
				document.write("class='ti_tbl_button'");
		document.write(">Evaluation Criteria</a></td>");
		
document.write("<td><a href='eve_thinprj_genrl.html'");
		if (filename=="eve_thinprj_genrl.html")
				document.write("class='ti_tbl_button_selected'");
		else	
				document.write("class='ti_tbl_button'");
		document.write(">General Rules</a></td>");	
		
document.write("<td><a href='eve_thinprj_prjsyn.html'");
		if (filename=="eve_thinprj_prjsyn.html")
				document.write("class='ti_tbl_button_selected'");
		else	
				document.write("class='ti_tbl_button'");
		document.write(">Guidelines for Project Synopsis</a></td>");			
		
document.write("</tr>");
document.write("</table>");
