function toggleContactBar(myObj,_on){if(_on){myObj.className="span-20 append-1 prepend-1 last contactBar contactBarOn"}else{myObj.className="span-20 append-1 prepend-1 last contactBar contactBarOff"}return true}Spry.Utils.addLoadListener(function(){Spry.$$("#contactBarUpper").addEventListener('mouseover',function(e){toggleContactBar(this,true)},false);Spry.$$("#contactBarUpper").addEventListener('mouseout',function(e){toggleContactBar(this,false)},false);Spry.$$("#contactBarLower").addEventListener('mouseover',function(e){toggleContactBar(this,true)},false);Spry.$$("#contactBarLower").addEventListener('mouseout',function(e){toggleContactBar(this,false)},false)});
