$(document).ready(function() {

$(function(){$('#slider').cycle({fx:'fade',next:'.next_btn',prev:'.prev_btn',speed:500,timeout:3000,pause:1,pager:'#slider-nav',pagerAnchorBuilder:function(index,el){return'<a href="#"> </a>'}})});jQuery().ready(function(){jQuery('#serviceAccord').accordion({header:'.main',autoheight:false})});(function($){$.fn.getTwitter=function(options){var o=$.extend({},$.fn.getTwitter.defaults,options);$(this).hide();if(o.showHeading){$(this).append('<h2>'+o.headingText+'</h2>')}$(this).append('<ul id="twitter_update_list"><li></li></ul>');$("ul#twitter_update_list").hide();var pl=$('<p id="'+o.preloaderId+'">'+o.loaderText+'</p>');$(this).append(pl);if(o.showProfileLink){$(this).append('<a id="profileLink" href="http://twitter.com/'+o.userName+'">http://twitter.com/'+o.userName+'</a>')}$(this).show();$.getScript("http://twitter.com/javascripts/blogger.js");$.getScript("http://twitter.com/statuses/user_timeline/"+o.userName+".json?callback=twitterCallback2&count="+o.numTweets,function(){$(pl).remove();if(o.slideIn){$("ul#twitter_update_list").slideDown(1000)}else{$("ul#twitter_update_list").show()}$("ul#twitter_update_list li:first").addClass("firstTweet");$("ul#twitter_update_list li:last").addClass("lastTweet")})};$.fn.getTwitter.defaults={userName:null,numTweets:5,preloaderId:"preloader",loaderText:"Loading tweets...",slideIn:false,showHeading:true,headingText:"Latest Tweets",showProfileLink:true}})(jQuery);$(document).ready(function(){$("#twitter").getTwitter({userName:"adirondackshred",numTweets:2,loaderText:"Loading tweets...",slideIn:true,showHeading:false,headingText:"Latest Tweets",showProfileLink:true})});jQuery.fn.prettyGallery=function(settings){settings=jQuery.extend({itemsPerPage:2,animationSpeed:'normal',navigation:'top',of_label:' of ',previous_title_label:'Previous page',next_title_label:'Next page',previous_label:'Previous',next_label:'Next'},settings);return this.each(function(){var currentPage=1,itemWidth=0,itemMargin=0,itemHeight=0,galleryWidth=0,pageCount=0,animated=false,$gallery=$(this);var prettyGalleryPrevious=function(caller){if(animated||$(caller).hasClass('disabled'))return;animated=true;$gallery.find('li:lt('+(currentPage*settings.itemsPerPage)+')').each(function(i){$(this).animate({'left':parseFloat($(this).css('left'))+(galleryWidth+itemMargin)},settings.animationSpeed,function(){animated=false})});$gallery.find('li:gt('+((currentPage*settings.itemsPerPage)-1)+')').each(function(i){$(this).animate({'left':parseFloat($(this).css('left'))+(galleryWidth+itemMargin)},settings.animationSpeed)});currentPage--;_displayPaging()};var prettyGalleryNext=function(caller){if(animated||$(caller).hasClass('disabled'))return;animated=true;$gallery.find('li:lt('+(currentPage*settings.itemsPerPage)+')').each(function(i){$(this).animate({'left':parseFloat($(this).css('left'))-(galleryWidth+itemMargin)},settings.animationSpeed,function(){animated=false})});$gallery.find('li:gt('+((currentPage*settings.itemsPerPage)-1)+')').each(function(i){$(this).animate({'left':parseFloat($(this).css('left'))-(galleryWidth+itemMargin)},settings.animationSpeed)});currentPage++;_displayPaging()};var _formatGallery=function(){itemWidth=$gallery.find('li:first').css('position','absolute').width();itemMargin+=($gallery.find('li:first').css('margin-right')=='auto')?0:parseFloat($gallery.find('li:first').css('margin-right'));itemMargin+=($gallery.find('li:first').css('margin-left')=='auto')?0:parseFloat($gallery.find('li:first').css('margin-left'));itemMargin+=($gallery.find('li:first').css('padding-right')=='auto')?0:parseFloat($gallery.find('li:first').css('padding-right'));itemMargin+=($gallery.find('li:first').css('padding-left')=='auto')?0:parseFloat($gallery.find('li:first').css('padding-left'));var itemSpacingTopBottom=0;itemSpacingTopBottom+=($gallery.find('li:first').css('margin-top')=='auto')?0:parseFloat($gallery.find('li:first').css('margin-top'));itemSpacingTopBottom+=($gallery.find('li:first').css('margin-bottom')=='auto')?0:parseFloat($gallery.find('li:first').css('margin-bottom'));itemSpacingTopBottom+=($gallery.find('li:first').css('padding-top')=='auto')?0:parseFloat($gallery.find('li:first').css('padding-top'));itemSpacingTopBottom+=($gallery.find('li:first').css('padding-bottom')=='auto')?0:parseFloat($gallery.find('li:first').css('padding-bottom'));var itemHeight=$gallery.find('li:first').height()+itemSpacingTopBottom;var marginRight=($gallery.find('li:first').css('margin-right')=='auto')?0:parseFloat($gallery.find('li:first').css('margin-right'));galleryWidth=(itemWidth+itemMargin)*settings.itemsPerPage-marginRight;$gallery.css({'width':galleryWidth,'height':itemHeight,'overflow':'hidden','position':'relative','clear':'left'});$gallery.find('li').each(function(i){$(this).css({'position':'absolute','top':0,'left':i*(itemWidth+itemMargin)})});$gallery.wrap('<div class="prettyGalleryContainer"></div>')};var _displayPaging=function(){$cg=$gallery.parents('div.prettyGalleryContainer:first');$cg.find('ul.pg_paging span.current').text(currentPage);$cg.find('ul.pg_paging span.total').text(pageCount);$cg.find('ul.pg_paging li a').removeClass('disabled');if(currentPage==1){$cg.find('ul.pg_paging li.pg_previous a').addClass('disabled')}else if(currentPage==pageCount){$cg.find('ul.pg_paging li.pg_next a').addClass('disabled')}};var _applyNav=function(){var template='';template+='<ul class="pg_paging">';template+='<li class="pg_previous"><a href="#" title="'+settings.previous_title_label+'">'+settings.previous_label+'</a></li>';template+='<li><span class="current">1</span>'+settings.of_label+'<span class="total">1</span></li>';template+='<li class="pg_next"><a href="#" title="'+settings.next_title_label+'">'+settings.next_label+'</a></li>';template+='</ul>';switch(settings.navigation){case'top':$gallery.before(template);break;case'bottom':$gallery.after(template);break;case'both':$gallery.before(template);$gallery.after(template);break};var $theNav=$gallery.parent('div.prettyGalleryContainer:first').find('ul.pg_paging');galleryBorderWidth=parseFloat($theNav.css('border-left-width'))+parseFloat($theNav.css('border-right-width'));$theNav.width(galleryWidth-galleryBorderWidth);$theNav.each(function(){$(this).find('li:eq(1)').width(galleryWidth-galleryBorderWidth-parseFloat($(this).parent().find('ul.prettyNavigation li:first').width())-parseFloat($(this).parent().find('ul.prettyNavigation li:last').width()))});$theNav.find('li.pg_previous a').click(function(){prettyGalleryPrevious(this);return false});$theNav.find('li.pg_next a').click(function(){prettyGalleryNext(this);return false})};if($(this).find('li').size()>settings.itemsPerPage){pageCount=Math.ceil($(this).find('li').size()/settings.itemsPerPage);_formatGallery();_applyNav();_displayPaging(this);currentPage=1}})};
});
