var t1 = 'Ramakrishna Mission Ashrama, Bhopal'
var t2 = '&#x0930;&#x093e;&#x092e;&#x0915;&#x0943;&#x0937;&#x094d;&#x0923; &#x092e;&#x093f;&#x0936;&#x0928; &#x0906;&#x0936;&#x094d;&#x0930;&#x092e;, &#x092d;&#x094b;&#x092a;&#x093e;&#x0932;'

function title1()
  {
  var t = document.getElementById('innertitle')
  t.style.fontSize = '28px'
  t.innerHTML = t1
  setTimeout('title2()',10000)
  }

function title2()
  {
  var t = document.getElementById('innertitle')
  if (navigator.userAgent.indexOf('Safari') > -1)
    t.style.fontSize = '26px'
  t.innerHTML = t2
  setTimeout('title1()',10000)
  }
  
// This function ("n" means "navigation") is called as an "onmouseover" (type = 1)
// event and "onmouseout" (type = 2) event in all navigation images
function n(image,type,multiple)
  {
  var filename = image.id
  if (multiple)
    // Special case: Here the file name is just the first letter
    filename = String(filename).substring(0,1)
  var hover = (type == 1) ? '_hov' : ''
  eval("document.getElementById('"+image.id+"').src = 'images/buttons/"+filename+hover+".png'")
  }
  
function wopen(href)
  {
  window.open(href)
  return false
  }