//*********DynamiX Javascript (function($){ $(document).ready(function(){ //Add href to category menu links that do not have an href and prevent click event. $('#nav a').each(function(){ if($(this).attr('href') == undefined){ $(this).attr('href','#').click(function(e){ e.preventDefault(); }); } }); $('.form-block input').attr('temp','test'); //EI-Slider Script $('#ei-slider').fixGallery(); $('#ei-slider').eislideshow({ animation : 'center', autoplay : true, slideshow_interval : 6000 }); //Tips animation var timeline = $('.timeline > li'); if(timeline.length > 0){ timeline.find('>a').click(function(e){ e.preventDefault(); }); timeline.hover(function(){ $(this).find('ul').addClass('show'); },function(){ $(this).find('ul').removeClass('show'); }); } //Wrap inner content of nav elements $('#nav > li').wrapInner(''); //******* Thermo Footer Animation *********/ if(!window.Touch && Modernizr.csstransitions && Modernizr.cssanimations){ var decor = $('.decor'); if(decor.length > 0){ decor.addClass('hide'); $(window).scroll(function(){ var itemTop = decor.offset().top; var itemTrigger = itemTop + decor.height(); var windowBottom = $(window).scrollTop() + $(window).height() if( windowBottom > itemTrigger){ decor.removeClass('hide').addClass('popup'); }else if(windowBottom < itemTop){ decor.addClass('hide').removeClass('popup'); } }); } } // Enable sidebar to be scroll down with page var sidebar = $('.sidebar'); if(sidebar.length > 0){ $('.sidebar').containedStickyScroll({ closeChar: '' }); } //Add classes to tables for alt color rows $('.page_21 .content table').addClass('fancytable'); $('.fancytable tr:nth-of-type(2n)').addClass('altrow'); }); //COLORBOX $(document).ready(function(){ $(".cb").colorbox({opacity:".50", iframe:false, maxHeight: "98%;", maxWidth: "98%"}); }); $(document).ready(function(){ $(".cb-video").colorbox({opacity:".50", iframe:true, innerWidth:500, innerHeight:415, width:500, height:415, maxHeight: "98%;", maxWidth: "98%"}); }); $(document).ready(function(){ $(".contactlink").colorbox({height:"450px", opacity:".50", iframe:true, width:"700px", maxHeight: "98%;", maxWidth: "98%"}); }); //Enable audio.js for audio player audiojs.events.ready(function() { var as = audiojs.createAll(); }); $(window).load(function(){ //Animate Thermo Reviews Image once images have loaded setTimeout(function(){ $('.columns .holder').removeClass('wide'); $('.columns .image').removeClass('hidden'); setTimeout(function(){ $('.columns .image .thermo-text').addClass('visible'); },400); }, 600); }); function flexMenu(obj,startWidth){ var obj = $(obj); var parentWidth = obj.parents('ul').innerWidth(); if(!startWidth){ setPadding(0); var startWidth = 0; obj.each(function(){ startWidth += $(this).width(); }); } parentWidth = parentWidth - 20; var padding = ((parentWidth - startWidth) / obj.length) / 2; //Calculate Padding in pixals //padding = ((padding / parentWidth) * 100); //Convert to Percentage //padding = (Math.round(padding*100)/100); //Round and append "%" console.log(parentWidth + ":" + startWidth + " length:" + obj.length + " diff:"+padding); console.log(padding); setPadding(padding + "px"); // obj.css({ // 'padding-left' : padding + '%', // 'padding-right' : padding + '%' // }); return startWidth; } function setPadding(padding){ if( $('head style').length == 0 ){ $('head').append(''); } var style = '#nav > li{padding-left:'+padding+'; padding-right:'+padding+';}'; $('head style').html(style); } })(jQuery); //******* Mobile Menu ***********// (function($){ $(function(){ $('#menu').prepend('
'); //Create div for Menu Icon $("#menu-icon").click(function(){ //Show #nav on click $("#nav").slideToggle('fast'); $(this).toggleClass("active"); $('#nav > li ul, .submenu-wrapper').parents('li').addClass('parent-menu'); }); }); })(jQuery); //******** End of Mobile Menu *******// //*********Layout Javascript // page init jQuery(function(){ // initInputs(); initItemsZindex(); // initScalingNavigation(); }); jQuery(window).bind('orientationchange resize',function(){ // initScalingNavigation(); }) jQuery(window).load(function(){ initSameHeight(); }); // add z-index to elements function initItemsZindex() { jQuery('.visual .boxes .box .holder').zIndexOrder({ reverse: true }); } // zIndex order plugin jQuery.fn.zIndexOrder = function(opt) { var options = jQuery.extend({ reverse: false, startIndex: 0 }, opt); var items = this; return items.each(function(index, item) { items.eq(options.reverse ? items.length - index - 1 : index).css({ zIndex: index + (options.startIndex || 1) }); }); }; // align blocks height function initSameHeight() { jQuery('.columns-holder').sameHeight({ elements: 'div.box', flexible: true, multiLine: true }); jQuery('.columns-holder').sameHeight({ elements: 'div.box h2', flexible: true, multiLine: true }); jQuery('#nav').sameHeight({ elements: 'a', flexible: true, multiLine: true }); } /* // clear inputs on focus function initInputs() { PlaceholderInput.replaceByOptions({ // filter options clearInputs: true, clearTextareas: true, clearPasswords: true, skipClass: 'default', // input options wrapWithElement: false, showUntilTyping: false, getParentByClass: false, placeholderAttr: 'value' }); } */ // resize navigation items to fill parent function initScalingNavigation() { initAutoScalingNav({ menuId: 'nav', sideClasses: true }); } /* * jQuery SameHeight plugin */ ;(function($){ $.fn.sameHeight = function(opt) { var options = $.extend({ skipClass: 'same-height-ignore', leftEdgeClass: 'same-height-left', rightEdgeClass: 'same-height-right', elements: '>*', flexible: false, multiLine: false, useMinHeight: false },opt); return this.each(function(){ var holder = $(this), postResizeTimer; var elements = holder.find(options.elements).not('.' + options.skipClass); if(!elements.length) return; // resize handler function doResize() { elements.css(options.useMinHeight && supportMinHeight ? 'minHeight' : 'height', ''); if(options.multiLine) { // resize elements row by row resizeElementsByRows(elements, options); } else { // resize elements by holder resizeElements(elements, holder, options); } } doResize(); // handle flexible layout / font resize if(options.flexible) { $(window).bind('resize orientationchange fontresize', function(e){ doResize(); clearTimeout(postResizeTimer); postResizeTimer = setTimeout(doResize, 100); }); } // handle complete page load including images and fonts $(window).bind('load', function(){ doResize(); clearTimeout(postResizeTimer); postResizeTimer = setTimeout(doResize, 100); }); }); } // detect css min-height support var supportMinHeight = typeof document.documentElement.style.maxHeight !== 'undefined'; // get elements by rows function resizeElementsByRows(boxes, options) { var currentRow = $(), maxHeight, firstOffset = boxes.eq(0).offset().top; boxes.each(function(ind){ var curItem = $(this); if(curItem.offset().top === firstOffset) { currentRow = currentRow.add(this); } else { maxHeight = getMaxHeight(currentRow); resizeElements(currentRow, maxHeight, options); currentRow = curItem; firstOffset = curItem.offset().top; } }); if(currentRow.length) { maxHeight = getMaxHeight(currentRow); resizeElements(currentRow, maxHeight, options); } } // calculate max element height function getMaxHeight(boxes) { var maxHeight = 0; boxes.each(function(){ maxHeight = Math.max(maxHeight, $(this).outerHeight()); }); return maxHeight; } // resize helper function function resizeElements(boxes, parent, options) { var parentHeight = typeof parent === 'number' ? parent : parent.height(); boxes.removeClass(options.leftEdgeClass).removeClass(options.rightEdgeClass).each(function(i){ var element = $(this); var depthDiffHeight = 0; if(typeof parent !== 'number') { element.parents().each(function(){ var tmpParent = $(this); if(this === parent[0]) { return false; } else { depthDiffHeight += tmpParent.outerHeight() - tmpParent.height(); } }); } var calcHeight = parentHeight - depthDiffHeight - (element.outerHeight() - element.height()); if(calcHeight > 0) { element.css(options.useMinHeight && supportMinHeight ? 'minHeight' : 'height', calcHeight); } }); boxes.filter(':first').addClass(options.leftEdgeClass); boxes.filter(':last').addClass(options.rightEdgeClass); } }(jQuery)); /* * jQuery FontResize Event */ jQuery.onFontResize = (function($) { $(function() { var randomID = 'font-resize-frame-' + Math.floor(Math.random() * 1000); var resizeFrame = $('