function popImagem( _id ){ if($('emailContent').visible()){ $('emailContent').update('').setStyle({'width':"255px", 'height':"102px", 'top':"0px"}); new Effect.Fade($('emailContent')); }else{ new Effect.Appear($('emailContent')); $('emailContentInner').update('Carregando...').show(); preloadImage = new Image(); preloadImage.src = 'http://www.seixasconstrutora.com.br/imagem.php?id='+_id; preloadImage.onload = function(){ $('emailContent').setStyle({'width':preloadImage.width+"px", 'height':preloadImage.height+"px", 'top':-((preloadImage.height+62)-162)+"px"}); $('emailContentInner').update(''); }; } } function flashPutHref( _v ){ } function galEsquerda(){ if(parseInt($('fotosContent').offsetLeft) < 0) new Effect.MoveBy( $('fotosContent'),0, 250); } function galDireita(){ if(parseInt($('fotosContent').offsetLeft) >= (-$('fotosContent').getWidth() + (2*250))) new Effect.MoveBy( $('fotosContent'),0, -250); } function blog_focus(){ this.addClassName('inputFocus'); this.previous('label').addClassName('labelFocus'); } function blog_blur(){ this.removeClassName('inputFocus'); this.previous('label').removeClassName('labelFocus'); } function init() { $$(".inputField").each(function(_ele){ Event.observe(_ele, 'focus', blog_focus.bindAsEventListener(_ele)); Event.observe(_ele, 'blur', blog_blur.bindAsEventListener(_ele)); }); $$('a.radio').each(function (_ele){ Event.observe(_ele, 'click', fakeRadio.bindAsEventListener(_ele)); }); } window.onload = init;