/*compress=0*/ // Autoplay function autoplay(p) { new Ajax("/index/ajax/autoplay/"+p, {method: 'get'}).request() $('autoplayOn').setProperty('class','off') $('autoplayOff').setProperty('class','off') if(p=='1') $('autoplayOn').setProperty('class','on') else $('autoplayOff').setProperty('class','on') } Window.addEvent('domready', function() { // Menu /* var list = $$('#menu a'); list.each(function(element) { var fx = new Fx.Styles(element, {duration:100, wait:false}); if (element.getProperty('class') != 'title' & element.getProperty('class') != 'autoplay on' & element.getProperty('class') != 'autoplay off'){ element.addEvent('mouseenter', function(){ fx.start({ 'margin': '1px 0 0 4px', 'color' : '#ebff7e' }); }); element.addEvent('mouseleave', function(){ fx.start({ 'margin': '1px 0 0 0', 'color' : '#ffffff' }); }); } });*/ /*$('autoplayOn').addEvent('click', autoplay('1')) $('autoplayOff').addEvent('click', autoplay('0'))*/ });