//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// window.addEvent('domready', function domreadyFunctions(){ $$('label.placeholder').each(function(el){ var target = $pick($(el.get('for')), el.getNext()); if (target && (target.get('type') == 'text' || target.get('type') == 'password' || target.get('tag') == 'textarea')){ target.set('placeholder', el.get('text')); el.destroy(); new PlaceholderInput({ element: target }); } }); //configuration widget, in the future please move in archived place var configuration = $$('#configuration').getLast(); if(configuration){ configuration.getElement('span').addClass('active'); configuration.addEvents({ 'mouseenter': function(){ this.getChildren('.possible').setStyle('display', 'block'); }, 'mouseleave': function(){ this.getChildren('.possible').setStyle('display', 'none'); } }); configuration.getElements('span').each(function(el){ el.addEvent('click', function(){ configuration.getElements('span').removeClass('active'); this.addClass('active'); configuration.getChildren('.possible').setStyle('display', 'none'); $('js-swf').set('value', this.get('rel')); $('js-swf').select(); }); }); } //end of configuration new swfImages({ element: 'div.trip-move' , swfUrl: "http://myphotorun.com/design/flash/pt-flash/load.swf" , imageDirection: '/en/index' , stylesPath: "http://myphotorun.com/design/flash/pt-flash" // , size: { // 'x': "700".toInt() // ,'x-min': "500".toInt() // , 'y': "1600".toInt() // , 'y-min': "400".toInt() // } }); $$('input.embed').addEvent('click', function(e){ this.select(); }); var help = $$('#help-flash')[0]; if(help){ new Swiff('/design/flash/player_flv_maxi.swf', { 'width': 920 , 'height': 498 , 'params': { 'menu': 'false' , 'allowFullScreen': 'true' } , 'properties': {} , 'vars': { 'flv': '/design/flash/final2.flv' , 'title': 'Video tutorial: how to add Photorun' , 'width': '920' , 'height': '498' , 'margin': '0' , 'bgcolor': 'ffffff' , 'bgcolor1': '2DB7FB' , 'bgcolor2': '2DB7FB' , 'showtime': '1' , 'showfullscreen': '1' , 'showplayer': 'always' , 'playercolor': '191C1A' , 'playeralpha': '50' , 'loadingcolor': 'ffffff' , 'buttoncolor': 'ffffff' , 'buttonovercolor': '2DB7FB' , 'slidercolor1': 'ffffff' , 'slidercolor2': 'ffffff' , 'sliderovercolor': '2DB7FB' , 'buffermessage': ''//'Buffering _n_' , 'buffercolor': 'ffffff' , 'bufferbgcolor': '2DB7FB' , 'titlesize': '30' , 'srt': '1' , 'srtcolor': 'ffffff' , 'srtsize': '26' , 'srturl': '/en/help/subtitles/' , 'showmouse': 'autohide' , 'videobgcolor': 'ffffff' } }).inject(help); } }); function d(v){ if(Browser.Engine.gecko){ console.info(v); } }