
/* - style.js - */
// http://cultura.fnac.pt/portal_javascripts/style.js?original=1
CULTF=typeof CULTF=='undefined'?{"Video":{}}:CULTF;CULTF.HoverBox=Class.create({initialize: function(element){this.el=element;this.hoverin();this.hoverout()},hoverClassOn: function(){this.addClassName('hoverState')},hoverClassOff: function(){this.removeClassName('hoverState')},hoverin: function(){if((typeof(this.el)!='undefined')&&(this.el!=null)){this.el.onmouseover=this.hoverClassOn} else{console.log("Couldn't find element, hoverin")}},hoverout: function(){if((typeof(this.el)!='undefined')&&(this.el!=null)){this.el.onmouseout=this.hoverClassOff} else{console.log("Couldn't find element, hoverin")}}});
