
// Narasoma.com - homepage.js - narasoma.com/index.html only

var oldclassName1st;
var oldclassName2nd;
 
function on2ColourLinkOver(id1st,id2nd)
{
 var o1st = document.getElementById(id1st);
 var o2nd = document.getElementById(id2nd);

 oldclassName1st = o1st.className;
 oldclassName2nd = o2nd.className;

 o1st.className ='OurPurpleHover';
 o2nd.className ='OurGreenHover';
}
function on2ColourLinkOut(id1st,id2nd)
{
 var o1st = document.getElementById(id1st);
 var o2nd = document.getElementById(id2nd);

 o1st.className = oldclassName1st;
 o2nd.className = oldclassName2nd;
}

