/*
Function to attach listeners to elements
event  - mouseout, mouseover, focus, blur, etc
object - element to attach event to
action - function to be called on event
params - any paramters to be passed to action
*/

function setEvent(e,o,a,p){if(o.addEventListener){o.addEventListener(e,function(){a(p);}, false)}else if(o.attachEvent){o.attachEvent('on'+e,function(){a(p);})}}