<public:attach event="ondocumentready" onevent="CSSHover()" />
<script>
/**
 *	Whatever:hover - V3.00.081222
 *	--------------------------------------------------------
 *	Author  - Peter Nederlof, http://www.xs4all.nl/~peterned
 *	License - http://creativecommons.org/licenses/LGPL/2.1
 *	Packed  - http://dean.edwards.name/packer
 *
 *	howto: body { behavior:url("csshover3.htc"); }
 */
window.CSSHover=(function(){var f=/(^|\s)((([^a]([^ ]+)?)|(a([^#.][^ ]+)+)):(hover|active|focus))/i,REG_AFFECTED=/(.*?)\:(hover|active|focus)/i,REG_PSEUDO=/[^:]+:([a-z-]+).*/i,REG_SELECT=/(\.([a-z0-9_-]+):[a-z]+)|(:[a-z]+)/gi,REG_CLASS=/\.([a-z0-9_-]*on(hover|active|focus))/i,REG_MSIE=/msie (5|6)/i,REG_COMPAT=/backcompat/i;var g='csh-';var h={elements:[],callbacks:{},init:function(){if(!REG_MSIE.test(navigator.userAgent))return;var a=window.document.styleSheets,l=a.length;for(var i=0;i<l;i++){this.parseStylesheet(a[i])}},parseStylesheet:function(a){if(a.imports){try{var b=a.imports,l=b.length;for(var i=0;i<l;i++){this.parseStylesheet(a.imports[i])}}catch(securityException){}}try{var c=a.rules,l=c.length;for(var j=0;j<l;j++){this.parseCSSRule(c[j],a)}}catch(securityException){}},parseCSSRule:function(a,b){if(a.selectorText.indexOf('navigation-1')>0){var c=a.selectorText;if(f.test(c)){var d=a.style.cssText,affected=REG_AFFECTED.exec(c)[1],pseudo=c.replace(REG_PSEUDO,'on$1'),newSelect=c.replace(REG_SELECT,'.$2'+pseudo),className=REG_CLASS.exec(newSelect)[1];var e=affected+className;if(!this.callbacks[e]){b.addRule(affected,g+className+':expression(CSSHover(this, "'+pseudo+'", "'+className+'"))');this.callbacks[e]=true}b.addRule(newSelect,d)}}},patch:function(a,b,c){if(!a.csshover)a.csshover=[];if(!a.csshover[c]){var d=g+c;if(a.style[d]){a.style[d]=null}a.csshover[c]=true;var e=new CSSHoverElement(a,b,c);this.elements.push(e)}return b},unload:function(){try{var l=this.elements.length;for(var i=0;i<l;i++){this.elements[i].unload()}this.elements=[];this.callbacks={}}catch(e){}}};window.attachEvent('onbeforeunload',function(){h.unload()});var k={onhover:{activator:'onmouseenter',deactivator:'onmouseleave'},onactive:{activator:'onmousedown',deactivator:'onmouseup'},onfocus:{activator:'onfocus',deactivator:'onblur'}};function CSSHoverElement(a,b,c){this.node=a;this.type=b;var d=new RegExp('(^|\\s)'+c+'(\\s|$)','g');this.activator=function(){a.className+=' '+c};this.deactivator=function(){a.className=a.className.replace(d,' ')};a.attachEvent(k[b].activator,this.activator);a.attachEvent(k[b].deactivator,this.deactivator)}CSSHoverElement.prototype={unload:function(){this.node.detachEvent(k[this.type].activator,this.activator);this.node.detachEvent(k[this.type].deactivator,this.deactivator);this.activator=null;this.deactivator=null;this.node=null;this.type=null}};return function(a,b,c){if(a){return h.patch(a,b,c)}else{h.init()}}})();
</script>