/* Prototype JavaScript framework * (c) 2005 Sam Stephenson * Prototype is freely distributable under the terms of an MIT-style license. * For details, see the Prototype web site: http://prototype.conio.net/ /*--------------------------------------------------------------------------*/ //note: modified & stripped down version of prototype, to be used with moo.fx by mad4milk (http://moofx.mad4milk.net). var Class = { create: function() { return function() { this.initialize.apply(this, arguments); } } } Object.extend = function(destination, source) { for (property in source) destination[property] = source[property]; return destination; } Function.prototype.bind = function(object) { var __method = this; return function() { return __method.apply(object, arguments); } } Function.prototype.bindAsEventListener = function(object) { var __method = this; return function(event) { __method.call(object, event || window.event); } } function $() { if (arguments.length == 1) return get$(arguments[0]); var elements = []; $c(arguments).each(function(el){ elements.push(get$(el)); }); return elements; function get$(el){ if (typeof el == 'string') el = document.getElementById(el); return el; } } if (!window.Element) var Element = new Object(); Object.extend(Element, { remove: function(element) { element = $(element); element.parentNode.removeChild(element); }, hasClassName: function(element, className) { element = $(element); if (!element) return; var hasClass = false; element.className.split(' ').each(function(cn){ if (cn == className) hasClass = true; }); return hasClass; }, addClassName: function(element, className) { element = $(element); Element.removeClassName(element, className); element.className += ' ' + className; }, removeClassName: function(element, className) { element = $(element); if (!element) return; var newClassName = ''; element.className.split(' ').each(function(cn, i){ if (cn != className){ if (i > 0) newClassName += ' '; newClassName += cn; } }); element.className = newClassName; }, cleanWhitespace: function(element) { element = $(element); $c(element.childNodes).each(function(node){ if (node.nodeType == 3 && !/\S/.test(node.nodeValue)) Element.remove(node); }); }, find: function(element, what) { element = $(element)[what]; while (element.nodeType != 1) element = element[what]; return element; } }); var Position = { cumulativeOffset: function(element) { var valueT = 0, valueL = 0; do { valueT += element.offsetTop || 0; valueL += element.offsetLeft || 0; element = element.offsetParent; } while (element); return [valueL, valueT]; } }; document.getElementsByClassName = function(className) { var children = document.getElementsByTagName('*') || document.all; var elements = []; $c(children).each(function(child){ if (Element.hasClassName(child, className)) elements.push(child); }); return elements; } //useful array functions Array.prototype.iterate = function(func){ for(var i=0;i=0){_60=_18[_59];}if(!el||!_60){return false;}if(el.removeEventListener){el.removeEventListener(_58,_60[this.WFN],false);}else{if(el.detachEvent){el.detachEvent("on"+_58,_60[this.WFN]);}}delete _18[_59][this.WFN];delete _18[_59][this.FN];delete _18[_59];return true;},getTarget:function(ev,_62){var t=ev.target||ev.srcElement;return this.resolveTextNode(t);},resolveTextNode:function(_64){if(_64&&_64.nodeName&&"#TEXT"==_64.nodeName.toUpperCase()){return _64.parentNode;}else{return _64;}},getPageX:function(ev){var x=ev.pageX;if(!x&&0!==x){x=ev.clientX||0;if(this.isIE){x+=this._getScrollLeft();}}return x;},getPageY:function(ev){var y=ev.pageY;if(!y&&0!==y){y=ev.clientY||0;if(this.isIE){y+=this._getScrollTop();}}return y;},getXY:function(ev){return [this.getPageX(ev),this.getPageY(ev)];},getRelatedTarget:function(ev){var t=ev.relatedTarget;if(!t){if(ev.type=="mouseout"){t=ev.toElement;}else{if(ev.type=="mouseover"){t=ev.fromElement;}}}return this.resolveTextNode(t);},getTime:function(ev){if(!ev.time){var t=new Date().getTime();try{ev.time=t;}catch(e){return t;}}return ev.time;},stopEvent:function(ev){this.stopPropagation(ev);this.preventDefault(ev);},stopPropagation:function(ev){if(ev.stopPropagation){ev.stopPropagation();}else{ev.cancelBubble=true;}},preventDefault:function(ev){if(ev.preventDefault){ev.preventDefault();}else{ev.returnValue=false;}},getEvent:function(e){var ev=e||window.event;if(!ev){var c=this.getEvent.caller;while(c){ev=c.arguments[0];if(ev&&Event==ev.constructor){break;}c=c.caller;}}return ev;},getCharCode:function(ev){return ev.charCode||((ev.type=="keypress")?ev.keyCode:0);},_getCacheIndex:function(el,_68,fn){for(var i=0,len=_18.length;i0);}var _73=[];for(var i=0,len=_19.length;i0){for(var i=0,len=_18.length;i0){for(i=0,len=_18.length;i= maxIter) { currentIter = 0; lastIter = maxIter - 1;} slideShowInit = 0; doSlideShow();} function gotoSlide(slideNb){ var vrimg = $('myVr'); var videoimg = $('myVideo'); if (vrimg != null){ this.container = $('thumb'); this.container.removeChild(vrimg); this.layer1 = document.createElement('div'); this.layer1.id = "mySlideshow"; this.container.appendChild(this.layer1); startSlideshow(); } if (videoimg != null){ this.container = $('thumb'); this.container.removeChild(videoimg); this.layer1 = document.createElement('div'); this.layer1.id = "mySlideshow"; this.container.appendChild(this.layer1); startSlideshow();} hideInfoSlideShow(); lastIter = currentIter; clearTimeout(timerShowInfoSlideShow); clearTimeout(timerHideInfoSlideShow); clearTimeout(timerNextSlideShow); currentIter = slideNb; slideShowInit = 0; doSlideShow(2);} function doSlideShow(position) { if (slideShowInit == 1) { timerNextSlideShow = setTimeout(nextSlideShow,1);} else { if (position == 1){ if (currentIter != 0) { $('slideElement' + parseInt(currentIter)).currentOpacity.options.onComplete = function() { $('slideElement' + parseInt(lastIter)).currentOpacity.setOpacity(0);} $('slideElement' + parseInt(currentIter)).currentOpacity.custom(0, 1);} else { $('slideElement' + parseInt(currentIter)).currentOpacity.setOpacity(1);} }else{ if (currentIter != maxIter - 1) { $('slideElement' + parseInt(currentIter)).currentOpacity.setOpacity(1); $('slideElement' + parseInt(lastIter)).currentOpacity.custom(1, 0);} else { $('slideElement' + parseInt(currentIter)).currentOpacity.options.onComplete = function() { $('slideElement' + parseInt(lastIter)).currentOpacity.setOpacity(0);} $('slideElement' + parseInt(currentIter)).currentOpacity.custom(0, 1);} } timerShowInfoSlideShow = setTimeout(showInfoSlideShow,1000); timerHideInfoSlideShow = setTimeout(hideInfoSlideShow,slideShowDelay-1000); timerNextSlideShow = setTimeout(nextSlideShow,slideShowDelay);} } function showInfoSlideShow() { articleLink.removeChild($('slideInfoZone')); var slideInfoZone = document.createElement('div'); slideInfoZone.setAttribute('id','slideInfoZone'); slideInfoZone.combo = new fx.Combo(slideInfoZone); slideInfoZone.combo.o.setOpacity(0); var slideInfoZoneTitle = document.createElement('h2'); slideInfoZoneTitle.innerHTML = slideShowData[currentIter][2] slideInfoZone.appendChild(slideInfoZoneTitle); var slideInfoZoneDescription = document.createElement('p'); slideInfoZoneDescription.innerHTML = slideShowData[currentIter][3] slideInfoZone.appendChild(slideInfoZoneDescription); articleLink.appendChild(slideInfoZone); articleLink.href = slideShowData[currentIter][1]; slideInfoZone.combo.o.custom(0, 0.7); slideInfoZone.combo.h.custom(0, slideInfoZone.combo.h.el.offsetHeight);} function hideInfoSlideShow() { $('slideInfoZone').combo.o.custom(0.7, 0);} var fx = new Object(); //base fx.Base = function(){}; fx.Base.prototype = { setOptions: function(options) { this.options = { duration: 500, onComplete: '', transition: fx.sinoidal } Object.extend(this.options, options || {}); }, step: function() { var time = (new Date).getTime(); if (time >= this.options.duration+this.startTime) { this.now = this.to; clearInterval (this.timer); this.timer = null; if (this.options.onComplete) setTimeout(this.options.onComplete.bind(this), 10); } else { var Tpos = (time - this.startTime) / (this.options.duration); this.now = this.options.transition(Tpos) * (this.to-this.from) + this.from; } this.increase(); }, custom: function(from, to) { if (this.timer != null) return; this.from = from; this.to = to; this.startTime = (new Date).getTime(); this.timer = setInterval (this.step.bind(this), 13); }, hide: function() { this.now = 0; this.increase(); }, clearTimer: function() { clearInterval(this.timer); this.timer = null; } } //stretchers fx.Layout = Class.create(); fx.Layout.prototype = Object.extend(new fx.Base(), { initialize: function(el, options) { this.el = $(el); this.el.style.overflow = "hidden"; this.iniWidth = this.el.offsetWidth; this.iniHeight = this.el.offsetHeight; this.setOptions(options); } }); fx.Height = Class.create(); Object.extend(Object.extend(fx.Height.prototype, fx.Layout.prototype), { increase: function() { this.el.style.height = this.now + "px"; }, toggle: function() { if (this.el.offsetHeight > 0) this.custom(this.el.offsetHeight, 0); else this.custom(0, this.el.scrollHeight); } }); fx.Width = Class.create(); Object.extend(Object.extend(fx.Width.prototype, fx.Layout.prototype), { increase: function() { this.el.style.width = this.now + "px"; }, toggle: function(){ if (this.el.offsetWidth > 0) this.custom(this.el.offsetWidth, 0); else this.custom(0, this.iniWidth); } }); //fader fx.Opacity = Class.create(); fx.Opacity.prototype = Object.extend(new fx.Base(), { initialize: function(el, options) { this.el = $(el); this.now = 1; this.increase(); this.setOptions(options); }, increase: function() { if (this.now == 1 && (/Firefox/.test(navigator.userAgent))) this.now = 0.9999; this.setOpacity(this.now); }, setOpacity: function(opacity) { if (opacity == 0 && this.el.style.visibility != "hidden") this.el.style.visibility = "hidden"; else if (this.el.style.visibility != "visible") this.el.style.visibility = "visible"; if (window.ActiveXObject) this.el.style.filter = "alpha(opacity=" + opacity*100 + ")"; this.el.style.opacity = opacity; }, toggle: function() { if (this.now > 0) this.custom(1, 0); else this.custom(0, 1); } }); //transitions fx.sinoidal = function(pos){ return ((-Math.cos(pos*Math.PI)/2) + 0.5); //this transition is from script.aculo.us } fx.linear = function(pos){ return pos; } fx.cubic = function(pos){ return Math.pow(pos, 3); } fx.circ = function(pos){ return Math.sqrt(pos); } fx.Scaleheader = Class.create(); fx.Scaleheader.prototype = Object.extend(new fx.Base(), { initialize: function(el, options) { this.el = $(el); this.setOptions(options); this.now = 30; }, increase: function() { this.el.style.height = this.now + "px"; }, sizeup: function(){ this.clearTimer(); this.custom(this.now, this.el.scrollHeight) }, sizedown: function(howMuch){ this.clearTimer(); this.custom(this.now, howMuch) } }); var ScrollLinks = { currentHash: false, start: function(){ this.scroll = new fx.Scroll({duration: 800, onComplete: function(){ScrollLinks.end();}}); this.allinks = document.getElementsByTagName('a'); for (i=0; i full) this.custom(top, dest - client + (full-dest)); else this.custom(top, dest); }, increase: function(){ window.scrollTo(0, this.now); } }); //text size modify, now works with pixels too. fx.Text = Class.create(); fx.Text.prototype = Object.extend(new fx.Base(), { initialize: function(el, options) { this.el = $(el); this.setOptions(options); if (!this.options.unit) this.options.unit = "em"; }, increase: function() { this.el.style.fontSize = this.now + this.options.unit; } }); //composition effect: widht/height/opacity fx.Combo = Class.create(); fx.Combo.prototype = { setOptions: function(options) { this.options = { opacity: true, height: true, width: false } Object.extend(this.options, options || {}); }, initialize: function(el, options) { this.el = $(el); this.setOptions(options); if (this.options.opacity) { this.o = new fx.Opacity(el, options); this.o.options.onComplete = null; } if (this.options.height) { this.h = new fx.Height(el, options); this.h.options.onComplete = null; } if (this.options.width) this.w = new fx.Width(el, options); }, toggle: function() { this.checkExec('toggle'); }, hide: function(){ this.checkExec('hide'); }, clearTimer: function(){ this.checkExec('clearTimer'); }, checkExec: function(func){ if (this.o) this.o[func](); if (this.h) this.h[func](); if (this.w) this.w[func](); }, //only if width+height resizeTo: function(hto, wto) { if (this.h && this.w) { this.h.custom(this.el.offsetHeight, this.el.offsetHeight + hto); this.w.custom(this.el.offsetWidth, this.el.offsetWidth + wto); } }, customSize: function(hto, wto) { if (this.h && this.w) { this.h.custom(this.el.offsetHeight, hto); this.w.custom(this.el.offsetWidth, wto); } } } fx.Accordion = Class.create(); fx.Accordion.prototype = { setOptions: function(options) { this.options = { delay: 100, opacity: false } Object.extend(this.options, options || {}); }, initialize: function(togglers, elements, options) { this.elements = elements; this.setOptions(options); var options = options || ''; this.fxa = []; if (options && options.onComplete) options.onFinish = options.onComplete; elements.each(function(el, i){ options.onComplete = function(){ if (el.offsetHeight > 0) el.style.height = '1%'; if (options.onFinish) options.onFinish(el); } this.fxa[i] = new fx.Combo(el, options); this.fxa[i].hide(); }.bind(this)); togglers.each(function(tog, i){ if (typeof tog.onclick == 'function') var exClick = tog.onclick; tog.onclick = function(){ if (exClick) exClick(); this.showThisHideOpen(elements[i]); }.bind(this); }.bind(this)); }, showThisHideOpen: function(toShow){ this.elements.each(function(el, j){ if (el.offsetHeight > 0 && el != toShow) this.clearAndToggle(el, j); if (el == toShow && toShow.offsetHeight == 0) setTimeout(function(){this.clearAndToggle(toShow, j);}.bind(this), this.options.delay); }.bind(this)); }, clearAndToggle: function(el, i){ this.fxa[i].clearTimer(); this.fxa[i].toggle(); } } var Remember = new Object(); Remember = function(){}; Remember.prototype = { initialize: function(el, options){ this.el = $(el); this.days = 365; this.options = options; this.effect(); var cookie = this.readCookie(); if (cookie) { this.fx.now = cookie; this.fx.increase(); } }, //cookie functions based on code by Peter-Paul Koch setCookie: function(value) { var date = new Date(); date.setTime(date.getTime()+(this.days*24*60*60*1000)); var expires = "; expires="+date.toGMTString(); document.cookie = this.el+this.el.id+this.prefix+"="+value+expires+"; path=/"; }, readCookie: function() { var nameEQ = this.el+this.el.id+this.prefix + "="; var ca = document.cookie.split(';'); for(var i=0;c=ca[i];i++) { while (c.charAt(0)==' ') c = c.substring(1,c.length); if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length); } return false; }, custom: function(from, to){ if (this.fx.now != to) { this.setCookie(to); this.fx.custom(from, to); } } } fx.RememberHeight = Class.create(); fx.RememberHeight.prototype = Object.extend(new Remember(), { effect: function(){ this.fx = new fx.Height(this.el, this.options); this.prefix = 'height'; }, toggle: function(){ if (this.el.offsetHeight == 0) this.setCookie(this.el.scrollHeight); else this.setCookie(0); this.fx.toggle(); }, resize: function(to){ this.setCookie(this.el.offsetHeight+to); this.fx.custom(this.el.offsetHeight,this.el.offsetHeight+to); }, hide: function(){ if (!this.readCookie()) { this.fx.hide(); } } }); fx.RememberText = Class.create(); fx.RememberText.prototype = Object.extend(new Remember(), { effect: function(){ this.fx = new fx.Text(this.el, this.options); this.prefix = 'text'; } }); //useful for-replacement Array.prototype.iterate = function(func){ for(var i=0;i