/* *********************************************************************** */

var com = com ? com : {}
    com.bigllc  = com.bigllc ? com.bigllc : {};   
    
/* *********************************************************************** */

if(!com.bigllc.scripts) {
    
com.bigllc.scripts  = com.bigllc.scripts ? com.bigllc.scripts : {};

/* *********************************************************************** */


com.bigllc.scripts.TagFocusStyler = function() {
  $$('.tag-focus-styler').each(function(item) {  
    Event.observe(item, "mouseover", function() {
      if(!$(item).hasClassName('focus-style-on')) {
        $(item).addClassName('focus-style-on');
      }
    });
 
    Event.observe(item, "mouseout", function() {
      if($(item).hasClassName('focus-style-on')) {
        $(item).removeClassName('focus-style-on');
      }
    });
  }); 
}

Event.observe(window, "load", com.bigllc.scripts.TagFocusStyler);

/* *********************************************************************** */

}