/** * @package WordPress * @subpackage Ambleside * @since Ambleside 1.0 * * Theme Scripts * Created by CMSMasters * */ /* * Responsive Content Slider v1.0.2 - jQuery Content Slider * * (c) Copyright Steven "cmsmasters" Masters * http://cmsmastrs.net/ * For sale on ThemeForest.net */ (function(a){a.fn.cmsmsResponsiveContentSlider=function(b){var c={sliderWidth:1e3,sliderHeight:500,animationSpeed:500,animationEffect:"slide",animationEasing:"easeInOutExpo",pauseTime:5e3,activeSlide:1,touchControls:true,pauseOnHover:true,arrowNavigation:true,arrowNavigationHover:false,slidesNavigation:true,slidesNavigationHover:false,afterSliderLoad:function(){},beforeSlideChange:function(){},afterSlideChange:function(){}},d=this,e=d.wrap('
').parent(),f=undefined,g={};g={init:function(){g.options=a.extend({},c,b);g.el=d;g.vars={};g.vars.oldSlide=undefined;g.vars.newSlide=undefined;g.vars.active_sl_numb=g.options.activeSlide==="random"?0:Number(g.options.activeSlide-1);g.vars.ifWNumber=typeof g.options.sliderWidth==="number"?true:false;g.vars.ifHNumber=typeof g.options.sliderHeight==="number"?true:false;g.vars.autoHeight=g.options.sliderHeight==="auto"?true:false;g.vars.inPause=true;g.vars.inAnimation=true;g.vars.mouseClicked=false;if(g.options.pauseTime!==0){g.vars.countdown=Math.round(g.options.pauseTime/50);g.vars.countMax=Math.round(g.options.pauseTime/50)}else{g.vars.countdown=-1;g.vars.countMax=-1}if(!g.vars.autoHeight){e.css({height:g.options.sliderHeight})}g.setSliderVars();g.preloadSlider()},setSliderVars:function(){g.vars.sliderWidth=g.vars.ifWNumber?g.options.sliderWidth+"px":g.options.sliderWidth;g.vars.sliderHeight=g.vars.ifHNumber?g.options.sliderHeight+"px":g.options.sliderHeight;g.vars.slides=g.el.find(">li");g.vars.sl_count=g.vars.slides.length;g.vars.first_sl=g.vars.slides.first();g.vars.last_sl=g.vars.slides.eq(g.vars.sl_count-1)},preloadSlider:function(){var b=g.vars.slides.find("img:eq(0)"),c=b.length;if(b.length>0){b.each(function(){var b=new Image,d=a(this).attr("src");b.src=d;a(this).addClass("cmsms_img");var e=setInterval(function(){if(isImageOk(b)||isImageOk(b)==="stop"){clearInterval(e);c-=1;if(c===0){g.buildSlider();g.buildControls();g.attachEvents();g.afterSliderLoad()}}},50)})}else{g.buildSlider();g.buildControls();g.attachEvents();g.afterSliderLoad()}},buildSlider:function(){g.vars.slides.addClass("cmsmsContentSlide").css({left:g.vars.sliderWidth});if(g.options.activeSlide==="random"){g.vars.active_sl_numb=parseInt(Math.random()*g.vars.sl_count)}g.el.css({background:"none"});e.css({width:g.vars.sliderWidth,padding:0,opacity:0});if(g.vars.autoHeight){g.vars.slides.css({height:"auto"});g.setSlideHeight(g.vars.slides.eq(g.vars.active_sl_numb),false)}g.vars.slides.eq(g.vars.active_sl_numb).css({left:0,zIndex:2}).addClass("active");e.animate({opacity:1},g.options.animationSpeed/2,g.options.animationEasing);g.vars.inPause=false;g.vars.inAnimation=false},buildControls:function(){if(g.options.slidesNavigation){e.append('
');g.vars.navWrapWrap=e.find("div.cmsms_nav_wrap_wrap");g.vars.navWrapWrap.append('
');g.vars.navWrap=g.vars.navWrapWrap.find("div.cmsms_nav_wrap");g.vars.navWrap.append('
    ');g.vars.slidesNav=g.vars.navWrap.find("ul.cmsms_slides_nav");if(g.options.slidesNavigationHover){g.vars.slidesNav.css({opacity:0})}for(var a=0;a'+(a+1)+"")}g.vars.slidesNav.find(">li").eq(g.vars.active_sl_numb).addClass("active");g.vars.slidesNavButton=g.vars.slidesNav.find(">li>a")}if(g.options.arrowNavigation){g.vars.navWrap.prepend('');g.vars.navWrap.append('');g.vars.prevSlideButton=g.vars.navWrap.find(".cmsms_content_prev_slide");g.vars.nextSlideButton=g.vars.navWrap.find(".cmsms_content_next_slide");if(g.options.arrowNavigationHover){g.vars.prevSlideButton.css({left:"-100px",opacity:0});g.vars.nextSlideButton.css({right:"-100px",opacity:0})}}},attachEvents:function(){if(g.options.touchControls){g.vars.slides.bind("mousedown",function(a){g.mouseDoun(a);return false});g.vars.slides.bind("mousemove",function(a){g.mouseMove(a);return false});g.vars.slides.bind("mouseup",function(){g.mouseUp();return false});e.bind("mouseleave",function(){if(!g.vars.mouseClicked){return}g.mouseUp();return false})}if(g.options.arrowNavigation){g.vars.nextSlideButton.bind("click",function(){g.nextSlide();return false});g.vars.prevSlideButton.bind("click",function(){g.prevSlide();return false})}if(g.options.slidesNavigation){g.vars.slidesNavButton.bind("click",function(){if(a(this).parent().is(".active")){return false}else{g.slideChoose(a(this).parent().index())}return false})}if(g.options.pauseOnHover){e.bind("mouseenter",function(){g.vars.inPause=true}).bind("mouseleave",function(){g.vars.inPause=false})}if(g.options.slidesNavigation&&g.options.slidesNavigationHover){e.bind("mouseenter",function(){g.vars.slidesNav.css({opacity:1})}).bind("mouseleave",function(){g.vars.slidesNav.css({opacity:0})})}if(g.options.arrowNavigation&&g.options.arrowNavigationHover){e.bind("mouseenter",function(){g.vars.prevSlideButton.stop().animate({left:"10px",opacity:1},g.options.animationSpeed,g.options.animationEasing);g.vars.nextSlideButton.stop().animate({right:"10px",opacity:1},g.options.animationSpeed,g.options.animationEasing)}).bind("mouseleave",function(){g.vars.prevSlideButton.stop().animate({left:"-100px",opacity:0},g.options.animationSpeed,g.options.animationEasing);g.vars.nextSlideButton.stop().animate({right:"-100px",opacity:0},g.options.animationSpeed,g.options.animationEasing)})}if(g.vars.autoHeight){a(window).bind("resize",function(){if(g.vars.active_sl===undefined){g.getSlVars()}g.setSlideHeight(g.vars.active_sl,false)})}f=setInterval(function(){g.timerController()},50)},getSlVars:function(){g.vars.active_sl=g.el.find(">li.active")},setSlideHeight:function(a,b){if(b){e.animate({height:a[0].scrollHeight+"px"},g.options.animationSpeed,g.options.animationEasing)}else{e.css({height:a[0].scrollHeight+"px"})}},navActiveSl:function(a,b){g.vars.slidesNav.find(">li").eq(a.index()).removeClass("active");g.vars.slidesNav.find(">li").eq(b.index()).addClass("active")},setTimer:function(){g.vars.inPause=false;if(g.options.pauseTime!==0){g.vars.countdown=Math.round(g.options.pauseTime/50);g.vars.countMax=Math.round(g.options.pauseTime/50)}else{g.vars.countdown=-1;g.vars.countMax=-1}},nextSlide:function(){if(g.vars.inAnimation||g.vars.sl_count<2){return false}else{g.vars.inAnimation=true}g.getSlVars();g.setTimer();g.beforeSlideChange();g.vars.oldSlide=g.vars.active_sl;g.vars.newSlide=g.vars.active_sl.index()0?g.vars.active_sl.prev():g.vars.last_sl;if(g.options.slidesNavigation){g.navActiveSl(g.vars.oldSlide,g.vars.newSlide)}if(g.vars.autoHeight){g.setSlideHeight(g.vars.newSlide,true)}if(g.options.animationEffect==="slide"){g.vars.oldSlide.removeClass("active").animate({left:g.vars.sliderWidth},g.options.animationSpeed,g.options.animationEasing,function(){a(this).css({zIndex:1})});g.vars.newSlide.addClass("active").css({left:"-"+g.vars.sliderWidth,zIndex:3}).animate({left:g.vars.ifWNumber?0:"0%"},g.options.animationSpeed,g.options.animationEasing,function(){a(this).css({zIndex:2});g.vars.inAnimation=false;g.afterSlideChange()})}else if(g.options.animationEffect==="fade"){g.fadeSlide(g.vars.oldSlide,g.vars.newSlide,false)}},slideChoose:function(b){if(g.vars.inAnimation){return false}else{g.vars.inAnimation=true}g.getSlVars();g.setTimer();g.beforeSlideChange();g.vars.oldSlide=g.vars.active_sl;g.vars.newSlide=g.vars.slides.eq(b);if(g.options.slidesNavigation){g.navActiveSl(g.vars.oldSlide,g.vars.newSlide)}if(g.vars.autoHeight){g.setSlideHeight(g.vars.newSlide,true)}if(g.vars.active_sl.index()0){if(g.options.animationEffect==="slide"){g.vars.prev_sl.css({left:-g.vars.sliderPxWidth+g.vars.xIndex+"px",zIndex:3})}else if(g.options.animationEffect==="fade"){if(g.vars.nextTouch){g.vars.nextTouch=false;g.vars.touchTarget.css({left:g.vars.sliderPxWidth+"px"})}if(!g.vars.prevTouch){g.vars.prevTouch=true}if(g.vars.active_sl.index()!==0){g.vars.touchTarget=g.vars.active_sl.prev()}else{g.vars.touchTarget=g.vars.last_sl}g.vars.touchTarget.css({left:0})}}},mouseUp:function(){if(!g.vars.mouseClicked){return}g.vars.mouseClicked=false;if(g.vars.xIndex<0){if(g.vars.xIndex<-75){g.beforeSlideChange();if(g.options.slidesNavigation){g.navActiveSl(g.vars.active_sl,g.vars.next_sl)}if(g.vars.autoHeight){g.setSlideHeight(g.vars.next_sl,true)}if(g.options.animationEffect==="slide"){if(g.vars.sl_count>2){g.vars.prev_sl.css({left:g.vars.sliderPxWidth+"px",zIndex:1})}g.vars.active_sl.removeClass("active").animate({left:"-"+g.vars.sliderPxWidth+"px"},g.options.animationSpeed,g.options.animationEasing,function(){a(this).css({left:g.vars.sliderPxWidth+"px",zIndex:1})});g.vars.next_sl.addClass("active").animate({left:0},g.options.animationSpeed,g.options.animationEasing,function(){a(this).css({zIndex:2});g.vars.inAnimation=false;g.setTimer();g.afterSlideChange()})}else if(g.options.animationEffect==="fade"){if(g.vars.sl_count>2){g.vars.prev_sl.css({left:g.vars.sliderPxWidth+"px",opacity:1,zIndex:1})}g.vars.active_sl.removeClass("active").animate({left:"-"+g.vars.sliderPxWidth+"px"},g.options.animationSpeed,g.options.animationEasing,function(){a(this).css({left:g.vars.sliderPxWidth+"px",opacity:1,zIndex:1});g.vars.next_sl.addClass("active").css({zIndex:2});g.vars.inAnimation=false;g.setTimer();g.afterSlideChange()})}}else{if(g.options.animationEffect==="slide"){if(g.vars.sl_count>2){g.vars.prev_sl.css({left:g.vars.sliderPxWidth+"px",zIndex:1})}g.vars.active_sl.animate({left:0},g.options.animationSpeed,g.options.animationEasing);g.vars.next_sl.animate({left:g.vars.sliderPxWidth+"px"},g.options.animationSpeed,g.options.animationEasing,function(){g.vars.inAnimation=false;g.vars.inPause=false})}else if(g.options.animationEffect==="fade"){if(g.vars.sl_count>2){g.vars.prev_sl.css({left:g.vars.sliderPxWidth+"px",opacity:1,zIndex:1})}g.vars.active_sl.animate({left:0,opacity:1},g.options.animationSpeed,g.options.animationEasing,function(){g.vars.next_sl.css({left:g.vars.sliderPxWidth+"px"});g.vars.inAnimation=false;g.vars.inPause=false})}}}else if(g.vars.xIndex>=0){if(g.vars.xIndex>75){g.beforeSlideChange();if(g.options.slidesNavigation){g.navActiveSl(g.vars.active_sl,g.vars.prev_sl)}if(g.vars.autoHeight){g.setSlideHeight(g.vars.prev_sl,true)}if(g.options.animationEffect==="slide"){if(g.vars.sl_count>2){g.vars.next_sl.css({left:g.vars.sliderPxWidth+"px",zIndex:1})}g.vars.active_sl.removeClass("active").animate({left:g.vars.sliderPxWidth+"px"},g.options.animationSpeed,g.options.animationEasing,function(){a(this).css({zIndex:1})});g.vars.prev_sl.addClass("active").animate({left:0},g.options.animationSpeed,g.options.animationEasing,function(){a(this).css({zIndex:2});g.vars.inAnimation=false;g.setTimer();g.afterSlideChange()})}else if(g.options.animationEffect==="fade"){if(g.vars.sl_count>2){g.vars.next_sl.css({left:g.vars.sliderPxWidth+"px",opacity:1,zIndex:1})}g.vars.active_sl.removeClass("active").animate({left:g.vars.sliderPxWidth+"px"},g.options.animationSpeed,g.options.animationEasing,function(){a(this).css({opacity:1,zIndex:1});g.vars.prev_sl.addClass("active").css({zIndex:2});g.vars.inAnimation=false;g.setTimer();g.afterSlideChange()})}}else{if(g.options.animationEffect==="slide"){if(g.vars.sl_count>2){g.vars.next_sl.css({left:g.vars.sliderPxWidth+"px",zIndex:1})}if(g.vars.xIndex!==0){g.vars.active_sl.animate({left:0},g.options.animationSpeed,g.options.animationEasing);g.vars.prev_sl.animate({left:"-"+g.vars.sliderPxWidth+"px"},g.options.animationSpeed,g.options.animationEasing,function(){g.vars.inAnimation=false;g.vars.inPause=false})}else{g.vars.inAnimation=false;g.vars.inPause=false}}else if(g.options.animationEffect==="fade"){if(g.vars.sl_count>2){g.vars.next_sl.css({left:g.vars.sliderPxWidth+"px",opacity:1,zIndex:1})}if(g.vars.xIndex!==0){g.vars.active_sl.animate({left:0,opacity:1},g.options.animationSpeed,g.options.animationEasing,function(){g.vars.prev_sl.css({left:g.vars.sliderPxWidth+"px"});g.vars.inAnimation=false;g.vars.inPause=false})}else{g.vars.inAnimation=false;g.vars.inPause=false}}}}},timerController:function(){if(g.vars.inPause||g.vars.countdown<0){return}if(g.vars.countdown===0){g.nextSlide()}g.vars.countdown-=1},afterSliderLoad:function(){g.options.afterSliderLoad()},beforeSlideChange:function(){g.options.beforeSlideChange()},afterSlideChange:function(){g.options.afterSlideChange()}};g.init()}})(jQuery); /* * jQuery Tools 1.2.5 Tooltip - UI essentials * NO COPYRIGHTS OR LICENSES. * Since: November 2008 */ (function(a){function d(d,e){var f=this,h=d.add(f),i,j=0,k=0,l=d.attr("title"),m=d.attr("data-tooltip"),n=b[e.effect],o,p=d.is(":input"),q=p&&d.is(":checkbox, :radio, select, :button, :submit"),r=d.attr("type"),s=e.events[r]||e.events[p?q?"widget":"input":"def"];if(!n){throw'Nonexistent effect "'+e.effect+'"'}s=s.split(/,\s*/);if(s.length!=2){throw"Tooltip: bad events configuration for "+r}d.bind(s[0],function(a){clearTimeout(j);if(e.predelay){k=setTimeout(function(){f.show(a)},e.predelay)}else{f.show(a)}}).bind(s[1],function(a){clearTimeout(k);if(e.delay){j=setTimeout(function(){f.hide(a)},e.delay)}else{f.hide(a)}});if(l&&e.cancelDefault){d.removeAttr("title");d.data("title",l)}a.extend(f,{show:function(b){if(!i){if(m){i=a(m)}else if(e.tip){i=a(e.tip).eq(0)}else if(l){i=a(e.layout).addClass(e.tipClass).appendTo(document.body).hide().append(l)}else{i=d.next();if(!i.length){i=d.parent().next()}}if(!i.length){throw"Cannot find tooltip for "+d}}if(f.isShown()){return f}i.stop(true,true);var g=c(d,i,e);if(e.tip){i.html(d.data("title"))}b=b||a.Event();b.type="onBeforeShow";h.trigger(b,[g]);if(a.browser.mozilla){}else{if(b.isDefaultPrevented()){return f}}g=c(d,i,e);i.css({position:"absolute",top:g.top,left:g.left});o=true;n[0].call(f,function(){b.type="onShow";o="full";h.trigger(b)});var p=e.events.tooltip.split(/,\s*/);if(!i.data("__set")){i.bind(p[0],function(){clearTimeout(j);clearTimeout(k)});if(p[1]&&!d.is("input:not(:checkbox, :radio), textarea")){i.bind(p[1],function(a){if(a.relatedTarget!=d[0]){d.trigger(s[1].split(" ")[0])}})}i.data("__set",true)}return f},hide:function(c){if(!i||!f.isShown()){return f}c=c||a.Event();c.type="onBeforeHide";h.trigger(c);if(a.browser.mozilla){}else{if(c.isDefaultPrevented()){return}}o=false;b[e.effect][1].call(f,function(){c.type="onHide";h.trigger(c)});return f},isShown:function(a){return a?o=="full":o},getConf:function(){return e},getTip:function(){return i},getTrigger:function(){return d}});a.each("onHide,onBeforeShow,onShow,onBeforeHide".split(","),function(b,c){if(a.isFunction(e[c])){a(f).bind(c,e[c])}f[c]=function(b){if(b){a(f).bind(c,b)}return f}})}function c(b,c,d){var e=d.relative?b.position().top:b.offset().top,f=d.relative?b.position().left:b.offset().left,g=d.position[0];e-=c.outerHeight()-d.offset[0];f+=b.outerWidth()+d.offset[1];if(/iPad/i.test(navigator.userAgent)){e-=a(window).scrollTop()}var h=c.outerHeight()+b.outerHeight();if(g=="center"){e+=h/2}if(g=="bottom"){e+=h}g=d.position[1];var i=c.outerWidth()+b.outerWidth();if(g=="center"){f-=i/2}if(g=="left"){f-=i}return{top:e,left:f}}a.tools=a.tools||{version:"1.2.5"};a.tools.tooltip={conf:{effect:"toggle",fadeOutSpeed:"fast",predelay:0,delay:30,opacity:1,tip:0,position:["top","center"],offset:[0,0],relative:false,cancelDefault:true,events:{def:"mouseenter,mouseleave",input:"focus,blur",widget:"focus mouseenter,blur mouseleave",tooltip:"mouseenter,mouseleave"},layout:"
    ",tipClass:"tooltip"},addEffect:function(a,c,d){b[a]=[c,d]}};var b={toggle:[function(a){var b=this.getConf(),c=this.getTip(),d=b.opacity;if(d<1){c.css({opacity:d})}c.show();a.call()},function(a){this.getTip().hide();a.call()}],fade:[function(a){var b=this.getConf();this.getTip().fadeTo(b.fadeInSpeed,b.opacity,a)},function(a){this.getTip().fadeOut(this.getConf().fadeOutSpeed,a)}]};a.fn.tooltip=function(b){var c=this.data("tooltip");if(c){return c}b=a.extend(true,{},a.tools.tooltip.conf,b);if(typeof b.position=="string"){b.position=b.position.split(/,?\s/)}this.each(function(){c=new d(a(this),b);a(this).data("tooltip",c)});return b.api?c:this}})(jQuery); (function(a){var b=a.tools.tooltip;a.extend(b.conf,{direction:"up",bounce:false,slideOffset:10,slideInSpeed:200,slideOutSpeed:200,slideFade:!a.browser.msie});var c={up:["-","top"],down:["+","top"],left:["-","left"],right:["+","left"]};b.addEffect("slide",function(a){var b=this.getConf(),d=this.getTip(),f=b.slideFade?{opacity:b.opacity}:{},g=c[b.direction]||c.up;f[g[1]]=g[0]+"="+b.slideOffset;b.slideFade&&d.css({opacity:0});d.show().animate(f,b.slideInSpeed,a)},function(b){var f=this.getConf(),g=f.slideOffset,h=f.slideFade?{opacity:0}:{},i=c[f.direction]||c.up,j=""+i[0];if(f.bounce)j=j=="+"?"-":"+";h[i[1]]=j+"="+g;this.getTip().animate(h,f.slideOutSpeed,function(){a(this).hide();b.call()})})})(jQuery); (function(a){function c(a){for(var b=a.length;b--;)if(a[b])return false;return true}function b(b){var c=a(window),d=c.width()+c.scrollLeft(),e=c.height()+c.scrollTop();return[b.offset().top<=c.scrollTop(),d<=b.offset().left+b.width(),e<=b.offset().top+b.height(),c.scrollLeft()>=b.offset().left]}var d=a.tools.tooltip;d.dynamic={conf:{classNames:"top right bottom left"}};a.fn.dynamic=function(e){if(typeof e=="number")e={speed:e};e=a.extend({},d.dynamic.conf,e);var f=e.classNames.split(/\s/),h;this.each(function(){var d=a(this).tooltip().onBeforeShow(function(d,i){d=this.getTip();var l=this.getConf();h||(h=[l.position[0],l.position[1],l.offset[0],l.offset[1],a.extend({},l)]);a.extend(l,h[4]);l.position=[h[0],h[1]];l.offset=[h[2],h[3]];d.css({visibility:"hidden",position:"absolute",top:i.top,left:i.left}).show();i=b(d);if(!c(i)){if(i[2]){a.extend(l,e.top);l.position[0]="top";d.addClass(f[0])}if(i[3]){a.extend(l,e.right);l.position[1]="right";d.addClass(f[1])}if(i[0]){a.extend(l,e.bottom);l.position[0]="bottom";d.addClass(f[2])}if(i[1]){a.extend(l,e.left);l.position[1]="left";d.addClass(f[3])}if(i[0]||i[2])l.offset[0]*=-1;if(i[1]||i[3])l.offset[1]*=-1}d.css({visibility:"visible"}).hide()});d.onBeforeShow(function(){var a=this.getConf();this.getTip();setTimeout(function(){a.position=[h[0],h[1]];a.offset=[h[2],h[3]]},0)});d.onHide(function(){var a=this.getTip();a.removeClass(e.classNames)});ret=d});return e.api?ret:this}})(jQuery); jQuery(document).ready(function () { /* Tooltip Run */ (function ($) { $('.link_tooltip').tooltip( { effect : 'slide', direction : 'up', slideOffset : 15, slideInSpeed : 300, slideOutSpeed : 300, position : 'top center' } ); } )(jQuery); } ); /* UItoTop jQuery Plugin 1.2 | Matt Varone | http://www.mattvarone.com/web-design/uitotop-jquery-plugin */ (function($){$.fn.UItoTop=function(options){var defaults={text:'To Top',min:200,inDelay:600,outDelay:400,containerID:'toTop',containerHoverID:'toTopHover',scrollSpeed:1200,easingType:'linear'},settings=$.extend(defaults,options),containerIDhash='#'+settings.containerID,containerHoverIDHash='#'+settings.containerHoverID;$('body').append(''+settings.text+'');$(containerIDhash).hide().on('click.UItoTop',function(){$('html, body').animate({scrollTop:0},settings.scrollSpeed,settings.easingType);$('#'+settings.containerHoverID,this).stop().animate({'opacity':0},settings.inDelay,settings.easingType);return false;}).prepend('').hover(function(){$(containerHoverIDHash,this).stop().animate({'opacity':1},600,'linear');},function(){$(containerHoverIDHash,this).stop().animate({'opacity':0},700,'linear');});$(window).scroll(function(){var sd=$(window).scrollTop();if(typeof document.body.style.maxHeight==="undefined"){$(containerIDhash).css({'position':'absolute','top':sd+$(window).height()-50});} if(sd>settings.min) $(containerIDhash).fadeIn(settings.inDelay);else $(containerIDhash).fadeOut(settings.Outdelay);});};})(jQuery); jQuery(document).ready(function() { /* Scroll to top */ jQuery().UItoTop({ containerID: 'slide_top', containerHoverID: 'slide_top_hover', easingType: 'easeOutQuart' }); }); /* Social Icons Script */ (function($){$.fn.socicons=function(c){var d={icons:'digg,stumbleupon,delicious,facebook,yahoo',imagesurl:'images/',imageformat:'png',light:true,targetblank:true,shorturl:''};var e=$.extend({},d,c);var f=this;var g=e.targetblank?'target="_blank"':'';var h=e.icons.split(',');for(key in h){var j=h[key];var k=socformat[h[key]];if(k!=undefined){k=k.replace('{TITLE}',urlencode(socicons_title()));k=k.replace('{URL}',urlencode(socicons_url()));k=k.replace('{SHORTURL}',urlencode(socicons_shorturl()));k=k.replace('{KEYWORDS}',urlencode(socicons_metawords()));k=k.replace('{DESCRIPTION}',urlencode(socicons_metadescript()));var l=''+j+'';this.append(l)}}if(e.light){this.find('.socicons_icon').bind('mouseover',function(){$(this).siblings().stop().animate({'opacity':0.3},500)});this.find('.socicons_icon').bind('mouseout',function(){$(this).siblings().stop().animate({'opacity':1},500)})}var m;function socicons_metawords(){if(n==undefined){metaCollection=document.getElementsByTagName('meta');for(i=0;i 540) { $('a.resp_navigation').removeClass('active'); $('#navigation').removeAttr('style'); $('#navigation ul').removeAttr('style'); } } ); } )(jQuery); /* Theme Scripts */ (function ($) { jQuery('#flickr .flickr_badge_image a, .cmsmasters_flickr_widget .flickr_badge_image a').each(function () { var src = jQuery(this).find('img').attr('src'), title = jQuery(this).find('img').attr('title'), src2 = src.replace(/_s.jpg/g, '.jpg'); jQuery(this).removeAttr('href'); jQuery(this).attr( { href : src2, title : title, rel : 'prettyPhoto[flickr_gal]' } ); } ); jQuery('.gallery.gallery-size-thumbnail').each(function () { var galid = jQuery(this).attr('id'); jQuery(this).find('a').attr( {rel : 'prettyPhoto[' + galid + ']', title : ''} ); } ); //Wordpress Default Gallery Shortcode Lightbox } )(jQuery); /* Popular, Latest and Related Posts */ (function ($) { $('.related_posts ul li a').click(function (e) { var rposts = $(this).parent().parent().parent(), index = $(this).parent().index(); rposts.find('ul').find('a').removeClass('current'); $(this).addClass('current'); rposts.find('div.related_posts_content').not('div.related_posts_content:eq(' + index + ')').slideUp(); rposts.find('div.related_posts_content:eq(' + index + ')').slideDown(); e.preventDefault(); } ); } )(jQuery); /* Toggle */ (function ($) { $('.togg a.tog').click(function (i) { var dropDown = $(this).parent().find('.tab_content'); $(this).parent().find('.tab_content').not(dropDown).slideUp(); if ($(this).hasClass('current')) { $(this).removeClass('current'); } else { $(this).addClass('current'); } dropDown.stop(false, true).slideToggle().css( { display : 'block' } ); i.preventDefault(); } ); } )(jQuery); /* Accordion */ (function ($) { $('.accordion a.tog').click(function (j) { var dropDown = $(this).parent().find('.tab_content'); $(this).parent().parent().find('.tab_content').not(dropDown).slideUp(); if ($(this).hasClass('current')) { $(this).removeClass('current'); } else { $(this).parent().parent().find('.tog').removeClass('current'); $(this).addClass('current'); } dropDown.stop(false, true).slideToggle().css( { display : 'block' } ); j.preventDefault(); } ); } )(jQuery); /* Tabs */ (function ($) { $('.tab ul.tabs li:first-child a').addClass('current'); $('.tab .tab_content div.tabs_tab:first-child').show(); $('.tab ul.tabs li a').click(function (g) { var tab = $(this).parent().parent().parent(), index = $(this).parent().index(); tab.find('ul.tabs').find('a').removeClass('current'); $(this).addClass('current'); tab.find('.tab_content').find('div.tabs_tab').not('div.tabs_tab:eq(' + index + ')').slideUp(); tab.find('.tab_content').find('div.tabs_tab:eq(' + index + ')').slideDown(); g.preventDefault(); } ); } )(jQuery); /* Tour */ (function ($) { $('.tour_content ul.tour li:first-child').addClass('current'); $('.tour_content div.tour_box:first').show(); $('.tour_content ul.tour li a').click(function (f) { var tour = $(this).parent().parent().parent().parent(), index = $('ul.tour li').index($(this).parent()); tour.find('ul.tour').find('li').removeClass('current'); $(this).parent().addClass('current'); tour.find('div.tour_box').not('div.tour_box:eq(' + index + ')').slideUp(); tour.find('div.tour_box:eq(' + index + ')').slideDown(); f.preventDefault(); } ); } )(jQuery); /* Image Preloader */ (function ($) { var images = jQuery('.preloader img'), max = images.length, img = new Image(), curr = 1; jQuery('.preloader').each(function () { jQuery('').prependTo(jQuery(this)); } ); images.remove(); if (max > 0) { loadImage(0, max); } else if ($('#middle .pj_sort').find('.p_options_block').html() !== null) { loadSorting(); } function loadImage(index, max) { if (index < max) { $('').each(function () { $(this).prependTo($('.preloader .image_container_img').eq(index)); } ); var img = new Image(), curr = $('#img' + (index + 1)); $(img).load(function () { $(curr).append(this).append(''); $(this).parent().parent().parent().css( { backgroundImage : 'none' } ); $(this).animate( { opacity : 1 }, 500, 'easeInOutExpo', function () { if ($(this).parent().parent().parent().hasClass('inBlog')) { $(this).parent().parent().parent().css( { height : 'auto', padding : 0 } ); } } ); if (index !== (max - 1)) { loadImage(index + 1, max); } } ).error(function () { $(curr).remove(); loadImage((index + 1), max); } ).attr( { src : $(images[index]).attr('src'), title : $(images[index]).attr('title'), alt : $(images[index]).attr('alt') } ).addClass($(images[index]).attr('class')); if (index === (max - 1) && $('#middle .pj_sort').find('.p_options_block').html() !== null) { loadSorting(); } } } function loadSorting() { if ($.browser.msie && $.browser.version < 9) { $('.p_options_loader').css( { display : 'none' } ); $('.p_options_block').css( { display : 'block' } ); } else { $('.p_options_loader').fadeOut(200, function () { $(this).css( { display : 'none' } ); } ); $('.p_options_block').fadeIn(200); } } } )(jQuery); } ); /* Like Button */ function cmsmsLike(postId) { if (postId !== '') { var likeButton = jQuery('#cmsmsLike-' + postId); likeButton.find('span').text('...'); jQuery.post( templateURL + '/theme/functions/like.php', { id : postId }, function (data) { likeButton.find('span').text(data); likeButton.addClass('active'); likeButton.attr( { onclick : 'return false;' } ); } ); } return false; } /* Comment Form Submit */ jQuery(document).ready(function () { (function ($) { jQuery('#commentform #submittedContact').bind('click', function () { jQuery('#commentform #submit').trigger('click'); return false; } ); } )(jQuery); } ); /* Correct OS & Browser Check */ var ua = navigator.userAgent, checker = { os : { iphone : ua.match(/iPhone/), ipod : ua.match(/iPod/), ipad : ua.match(/iPad/), blackberry : ua.match(/BlackBerry/), android : ua.match(/(Android|Linux armv6l|Linux armv7l)/), linux : ua.match(/Linux/), win : ua.match(/Windows/), mac : ua.match(/Macintosh/) }, ua : { ie : ua.match(/MSIE/), ie6 : ua.match(/MSIE 6.0/), ie7 : ua.match(/MSIE 7.0/), ie8 : ua.match(/MSIE 8.0/), ie9 : ua.match(/MSIE 9.0/), ie10 : ua.match(/MSIE 10.0/), opera : ua.match(/Opera/), firefox : ua.match(/Firefox/), chrome : ua.match(/Chrome/), safari : ua.match(/(Safari|BlackBerry)/) } }; /* Correct Image Load Check */ function isImageOk(img) { if (!img.complete) { return false; } if (typeof img.naturalWidth !== undefined && img.naturalWidth === 0) { return 'stop'; } return true; } /* Convert Touch Events to Mouse Events Function */ function touchHandler(e) { var first = e.changedTouches[0], type = '', simulatedEvent = undefined; switch (e.type) { case 'touchstart': type = 'mousedown'; break; case 'touchmove': type = 'mousemove'; break; case 'touchend': type = 'mouseup'; break; case 'touchcancel': type = 'mouseleave'; break; default: return; } simulatedEvent = document.createEvent('MouseEvent'); simulatedEvent.initMouseEvent( type, true, true, window, 1, first.screenX, first.screenY, first.clientX, first.clientY, false, false, false, false, 0, null ); first.target.dispatchEvent(simulatedEvent); e.preventDefault(); } /* Sliders Touch Events Convert Run */ (function ($) { if (!checker.ua.ie6 && !checker.ua.ie7 && !checker.ua.ie8) { document.addEventListener('touchstart', function (e) { if ( $(e.changedTouches[0].target).is('img.cmsms_img') || $(e.changedTouches[0].target).is('div.cmsms_img_pattern') || $(e.changedTouches[0].target).is('div.cmsms_img_video') || $(e.changedTouches[0].target).is('div.slideCaption') || $(e.changedTouches[0].target).is('div.slideCaptionInner') || $(e.changedTouches[0].target).is('div.slideCaptionInnerBlock') || $(e.changedTouches[0].target).parent().is('div.slideCaptionInner') || $(e.changedTouches[0].target).parent().is('div.slideCaptionInnerBlock') || $(e.changedTouches[0].target).parent().is('li.cmsmsContentSlide.active') || $(e.changedTouches[0].target).parent().parent().is('li.cmsmsContentSlide.active') || $(e.changedTouches[0].target).parent().parent().parent().is('li.cmsmsContentSlide.active') || $(e.changedTouches[0].target).parent().parent().parent().parent().is('li.cmsmsContentSlide.active') || $(e.changedTouches[0].target).parent().parent().parent().parent().parent().is('li.cmsmsContentSlide.active') ) { touchHandler(e); } }, true); document.addEventListener('touchmove', function (e) { if ( $(e.changedTouches[0].target).is('img.cmsms_img') || $(e.changedTouches[0].target).is('div.cmsms_img_pattern') || $(e.changedTouches[0].target).is('div.cmsms_img_video') || $(e.changedTouches[0].target).is('div.slideCaption') || $(e.changedTouches[0].target).is('div.slideCaptionInner') || $(e.changedTouches[0].target).is('div.slideCaptionInnerBlock') || $(e.changedTouches[0].target).parent().is('div.slideCaptionInner') || $(e.changedTouches[0].target).parent().is('div.slideCaptionInnerBlock') || $(e.changedTouches[0].target).parent().is('li.cmsmsContentSlide.active') || $(e.changedTouches[0].target).parent().parent().is('li.cmsmsContentSlide.active') || $(e.changedTouches[0].target).parent().parent().parent().is('li.cmsmsContentSlide.active') || $(e.changedTouches[0].target).parent().parent().parent().parent().is('li.cmsmsContentSlide.active') || $(e.changedTouches[0].target).parent().parent().parent().parent().parent().is('li.cmsmsContentSlide.active') ) { touchHandler(e); } }, true); document.addEventListener('touchend', function (e) { if ( $(e.changedTouches[0].target).is('img.cmsms_img') || $(e.changedTouches[0].target).is('div.cmsms_img_pattern') || $(e.changedTouches[0].target).is('div.cmsms_img_video') || $(e.changedTouches[0].target).is('div.slideCaption') || $(e.changedTouches[0].target).is('div.slideCaptionInner') || $(e.changedTouches[0].target).is('div.slideCaptionInnerBlock') || $(e.changedTouches[0].target).parent().is('div.slideCaptionInner') || $(e.changedTouches[0].target).parent().is('div.slideCaptionInnerBlock') || $(e.changedTouches[0].target).parent().is('li.cmsmsContentSlide.active') || $(e.changedTouches[0].target).parent().parent().is('li.cmsmsContentSlide.active') || $(e.changedTouches[0].target).parent().parent().parent().is('li.cmsmsContentSlide.active') || $(e.changedTouches[0].target).parent().parent().parent().parent().is('li.cmsmsContentSlide.active') || $(e.changedTouches[0].target).parent().parent().parent().parent().parent().is('li.cmsmsContentSlide.active') ) { touchHandler(e); } }, true); document.addEventListener('touchcancel', function (e) { if ( $(e.changedTouches[0].target).is('img.cmsms_img') || $(e.changedTouches[0].target).is('div.cmsms_img_pattern') || $(e.changedTouches[0].target).is('div.cmsms_img_video') || $(e.changedTouches[0].target).is('div.slideCaption') || $(e.changedTouches[0].target).is('div.slideCaptionInner') || $(e.changedTouches[0].target).is('div.slideCaptionInnerBlock') || $(e.changedTouches[0].target).parent().is('div.slideCaptionInner') || $(e.changedTouches[0].target).parent().is('div.slideCaptionInnerBlock') || $(e.changedTouches[0].target).parent().is('li.cmsmsContentSlide.active') || $(e.changedTouches[0].target).parent().parent().is('li.cmsmsContentSlide.active') || $(e.changedTouches[0].target).parent().parent().parent().is('li.cmsmsContentSlide.active') || $(e.changedTouches[0].target).parent().parent().parent().parent().is('li.cmsmsContentSlide.active') || $(e.changedTouches[0].target).parent().parent().parent().parent().parent().is('li.cmsmsContentSlide.active') ) { touchHandler(e); } }, true); } } )(jQuery);