/**
 * @author      Andre Berg
 *              
 * @copyright   2009 Berg Media. All rights reserved.
 *              
 * @license     Licensed under the Apache License, Version 2.0 (the "License");
 *              you may not use this file except in compliance with the License.
 *              You may obtain a copy of the License at
 *              
 *              http://www.apache.org/licenses/LICENSE-2.0
 *              
 *              Unless required by applicable law or agreed to in writing, software
 *              distributed under the License is distributed on an "AS IS" BASIS,
 *              WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *              See the License for the specific language governing permissions and
 *              limitations under the License.
 *              
 * @requires    jQuery 1.3 or later
 */
;function showSubMenu(speed,delay,action,drawer,easing,hideFirst,pathDepth){drawer=drawer||'#drawer';speed=speed||300;delay=delay||0;action=action||"fade";hideFirst=hideFirst||false;easing=easing||"swing";pathDepth=pathDepth||1;var $drawer=$(drawer);var cont=true;var oldpath="blah";var curpath="blub";var rePath="";for(var i=0;i<pathDepth;i++){rePath+=".*/";}rePath=new RegExp("(^.*/)"+rePath);var ref=document.referrer.toString();var loc=window.location.toString();var mat=ref.match(rePath);if(mat){oldpath=mat[1];}mat=loc.match(rePath);if(mat){curpath=mat[1];}if((curpath===oldpath)||loc.search=="?s=0"||(/makingof/.test(ref))){return true;}function openFade(drawer,s,e){var $tparent=drawer.parent();var $tsub=drawer.children().children();var $tnext=$tparent.next();var h=($tnext.offset().top-$tsub.offset().top);var minOpacity=0;var maxOpacity=1;var minHeight=0.001;if($.browser.msie){}else if($.browser.safari&&(/Version\/4\.0/.test(navigator.appVersion))){drawer.animate({opacity:minOpacity,height:minHeight},{duration:0,easing:e,queue:true}).animate({opacity:maxOpacity,height:h},{duration:s,easing:e,queue:true});}else{drawer.animate({opacity:maxOpacity},{duration:s,easing:e,queue:true});}return true;}if(delay>0){if(action=="show"){if(hideFirst===true){$drawer.hide();}setTimeout(function(){$drawer.show(speed);},delay);}else if(action=="fade"){setTimeout(function(){openFade($drawer,speed,easing);},delay);}else{return false;}return true;}else{if(action=="show"){return(hideFirst?$drawer.hide().show(speed):$drawer.show(speed));}else if(action=="fade"){openFade($drawer,speed,easing);}else{return false;}return true;}}function hideSubMenu(speed,delay,action,easing,drawer,handle,parentclass,additionalclass){speed=speed||400;delay=delay||0;drawer=drawer||'#drawer';handle=handle||'#handle';parentclass=parentclass||'.main-nav';additionalclass=additionalclass||'.home';action=action||"fade";easing=easing||"swing";var $drawer=$(drawer);var $handle=$(handle);function closeFade(drawer,handle,s,e,loc){var hh=handle.height();function doAnimation(){drawer.animate({opacity:0},{duration:s,easing:e,queue:true}).animate({height:0},{duration:s,easing:e,queue:true}).parent().animate({height:hh},{duration:s,easing:e,queue:true,complete:function(){if(loc){if(typeof loc=='string'){window.location=loc;}else if(typeof loc=='object'){return loc;}}}});}if($.browser.msie!==true){doAnimation();}else{if(loc){if(typeof loc=='string'){window.location=loc;}else if(typeof loc=='object'){return loc;}}}return false;}$(parentclass).filter(':not(.selected)').children().add(additionalclass).each(function(){$(this).click(function(evt){var $t=$(this);evt.stopPropagation();if(delay>0){if(action=="hide"){setTimeout(function(){$drawer.hide();},delay);}else if(action=="fade"){closeFade($drawer,$handle,speed,easing,$t[0].href);}else{return true;}}else{if(action=="hide"){$drawer.hide();}else if(action=="fade"){closeFade($drawer,$handle,speed,easing,$t[0].href);return false;}else{return true;}return false;}});});}function fadeViewer(h,t,s,dir){t=t||'#viewer';s=s||1000;dir=dir||'in';h=h||590;var minOpacity=0;var maxOpacity=1;var $t=$(t);if($.browser.msie===true&&$.browser.version!=="8.0"){$t.css({visibility:'visible'});return false;}else if(dir=='in'){try{$t.animate({opacity:minOpacity},0).queue(function(){if(h===-1){$(this).css({visibility:'visible'});}else{$(this).css({visibility:'visible',height:h});}$(this).dequeue();}).animate({opacity:maxOpacity},s);return true;}catch(e){return false;}}else{try{$t.animate({opacity:maxOpacity},0).animate({opacity:minOpacity},s);return true;}catch(e){return false;}}}$.fn.top=function(){return this.offset().top;};$.fn.left=function(){return this.offset().left;};$.fn.delayedShow=function delayedShow(mySpeed,myDelay,myCallback){mySpeed=mySpeed||400;myDelay=myDelay||400;if(myCallback&&$.isFunction(myCallback)){setTimeout(function(){jqobj=$(this).show(mySpeed,myCallback);},myDelay);}else{setTimeout(function(){jqobj=$(this).show(mySpeed);},myDelay);}return jqobj;};$.fn.delayedFade=function delayedFade(mySpeed,myDelay,myOpacity,myCallback){mySpeed=mySpeed||400;myDelay=myDelay||400;myOpacity=myOpacity||0.5;var targets=$(this);if(myDelay>0){if(myCallback!==undefined&&myCallback!==null){return setTimeout(function(){return targets.animate({opacity:myOpacity},mySpeed,myCallback);},myDelay);}else{return setTimeout(function(){return targets.animate({opacity:myOpacity},mySpeed);},myDelay);}}else{if(myCallback!==undefined&&myCallback!==null){return targets.animate({opacity:myOpacity},mySpeed,myCallback);}else{return targets.animate({opacity:myOpacity},mySpeed);}}};(function(jQuery){jQuery.each(['backgroundColor','borderBottomColor','borderLeftColor','borderRightColor','borderTopColor','color','outlineColor'],function(i,attr){jQuery.fx.step[attr]=function(fx){if(fx.state===0){fx.start=getColor(fx.elem,attr);fx.end=getRGB(fx.end);}fx.elem.style[attr]="rgb("+[Math.max(Math.min(parseInt((fx.pos*(fx.end[0]-fx.start[0]))+fx.start[0],10),255),0),Math.max(Math.min(parseInt((fx.pos*(fx.end[1]-fx.start[1]))+fx.start[1],10),255),0),Math.max(Math.min(parseInt((fx.pos*(fx.end[2]-fx.start[2]))+fx.start[2],10),255),0)].join(",")+")";};});function getRGB(color){var result;if(color&&color.constructor==Array&&color.length==3){return color;}if(result=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(color)){return[parseInt(result[1]),parseInt(result[2]),parseInt(result[3])]}if(result=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(color)){return[parseFloat(result[1])*2.55,parseFloat(result[2])*2.55,parseFloat(result[3])*2.55]}if(result=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(color)){return[parseInt(result[1],16),parseInt(result[2],16),parseInt(result[3],16)]}if(result=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(color)){return[parseInt(result[1]+result[1],16),parseInt(result[2]+result[2],16),parseInt(result[3]+result[3],16)]}return colors[jQuery.trim(color).toLowerCase()]}function getColor(elem,attr){var color;do{color=jQuery.curCSS(elem,attr);if(color!=''&&color!='transparent'||jQuery.nodeName(elem,"body")){break}attr="backgroundColor"}while(elem=elem.parentNode);return getRGB(color)};var colors={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0]};})(jQuery);