if( window.devicePixelRatio && window.getMatchedCSSRules && !window.Opera){
	document.write('<link rel="stylesheet" href="safari3.css" type="text/css" />')
}
function init() {
 if (document.getElementById) {
  var x = document.getElementsByTagName('div');
 } else if (document.all) {
  var x = document.all.tags('div');
 } else {
  return;
 }
 for (var i=0;i<x.length;i++) {
  x[i].onmouseover = function () { if (this.className == 'inactiveleft')
this.className = 'activeleft'; if (this.className == 'inactivemiddle')
this.className = 'activemiddle'; if (this.className == 'inactiveright')
this.className = 'activeright';}
  x[i].onmouseout = function () { if (this.className == 'activeleft')
this.className = 'inactiveleft'; if (this.className == 'activemiddle')
this.className = 'inactivemiddle'; if (this.className == 'activeright')
this.className = 'inactiveright';}
 }
}