    selected = null;    
    function init() {
        obj = document.all.home;
        select(obj);           
    }
    function highlight(obj) {        
        if (selected != null) {
            selected.style.backgroundColor="#790CBE";
        }
        obj.style.backgroundColor="#4E1373";           
    }
    
    function unhighlight(obj) { 
        obj.style.backgroundColor="#790CBE";
        if (selected != null) {
            selected.style.backgroundColor="#4E1373";
        }
    }
    
    function select(obj) {
        if (obj != selected) {
            highlight(obj);            
            selected = obj;
       
        }
    }
    
	function home() {
		  location.replace("index.html");
	}

    function events() {
    	  location.replace("events.html");
    }
    
    function scholarship() {
        location.replace("scholarship.html");
    }

	function pictures() {
         location.replace("pictures.html");

	}
        
    function membership() {
        location.replace("membership.html");
    }
    
    function contacts() {
    	  location.replace("contacts.html");
    }
    

   

document.write("<TABLE  border=0 cellspacing=4 cellpadding=1 >");

document.write("<TR><TD  id='home'  style='background:#790CBE; text-align: center'  onmouseover='highlight(this);' onmouseout='unhighlight(this);' onclick='home()'><font face=arial color=ffffff size='-1'><b>Home</TD></TR>");
document.write("<TR><TD  id='events' style='background:#790CBE; text-align: center' onmouseover='highlight(this);' onmouseout='unhighlight(this);' onclick='events()'><font face=arial color=ffffff size='-1'><b>Events</TD></TR>");
document.write("<TR><TD  id='scholarship'  style='background:#790CBE; text-align: center'  onmouseover='highlight(this);' onmouseout='unhighlight(this);' onclick='scholarship()'><font face=arial color=ffffff size='-1'><b>Scholarship</TD></TR>");
document.write("<TR><TD  id='pictures' style='background:#790CBE; text-align: center' onmouseover='highlight(this);' onmouseout='unhighlight(this);' onclick='pictures()'><font face=arial color=ffffff size='-1'><b>Pictures</TD></TR>");      
document.write("<TR><TD  id='contacts' style='background:#790CBE; text-align: center' onmouseover='highlight(this);' onmouseout='unhighlight(this);' onclick='contacts()'><font face=arial color=ffffff size='-1'><b>Contacts</TD></TR>");              
document.write("<TR><TD  id='membership' style='background:#790CBE; text-align: center' onmouseover='highlight(this);' onmouseout='unhighlight(this);' onclick='membership()'><font face=arial color=ffffff size='-1'><b>Membership</TD></TR>");

document.write("</TABLE>");
       
