/*!
 * jCarouselLite - Version: 1.0.1 (modified)
 * http://www.gmarwaha.com/jquery/jcarousellite
 * Added hold on mouseenter (using original selector or additional option: wrapper)
 */
(function($){$.fn.jCarouselLite=function(o){o=$.extend({btnPrev:null,btnNext:null,btnGo:null,mouseWheel:false,auto:null,speed:200,easing:null,vertical:false,circular:true,visible:3,start:0,scroll:1,beforeStart:null,afterEnd:null,wrapper:null},o||{});return this.each(function(){var b=false,animCss=o.vertical?"top":"left",sizeCss=o.vertical?"height":"width";var c=$(this),ul=$("ul",c),tLi=$("li",ul),tl=tLi.size(),v=o.visible;if(o.circular){ul.prepend(tLi.slice(tl-v-1+1).clone()).append(tLi.slice(0,v).clone());o.start+=v}var f=$("li",ul),itemLength=f.size(),curr=o.start;c.css("visibility","visible");f.css({overflow:"hidden",float:o.vertical?"none":"left"});ul.css({margin:"0",padding:"0",position:"relative","list-style-type":"none","z-index":"1"});c.css({overflow:"hidden",position:"relative","z-index":"2",left:"0px"});var g=o.vertical?height(f):width(f);var h=g*itemLength;var j=g*v;f.css({width:f.width(),height:f.height()});ul.css(sizeCss,h+"px").css(animCss,-(curr*g));c.css(sizeCss,j+"px");if(o.wrapper===null)o.wrapper=c;o.wrapper.mouseenter(function(){autohold=1}).mouseleave(function(){autohold=0;});if(o.btnPrev)$(o.btnPrev).click(function(){return go(curr-o.scroll)});if(o.btnNext)$(o.btnNext).click(function(){return go(curr+o.scroll)});if(o.btnGo)$.each(o.btnGo,function(i,a){$(a).click(function(){return go(o.circular?o.visible+i:i)})});if(o.mouseWheel&&c.mousewheel)c.mousewheel(function(e,d){return d>0?go(curr-o.scroll):go(curr+o.scroll)});if(o.auto)setInterval(function(){if(typeof autohold==='undefined'||autohold!==1)go(curr+o.scroll)},o.auto+o.speed);function vis(){return f.slice(curr).slice(0,v)};function go(a){if(!b){if(o.beforeStart)o.beforeStart.call(this,vis());if(o.circular){if(a<=o.start-v-1){ul.css(animCss,-((itemLength-(v*2))*g)+"px");curr=a==o.start-v-1?itemLength-(v*2)-1:itemLength-(v*2)-o.scroll}else if(a>=itemLength-v+1){ul.css(animCss,-((v)*g)+"px");curr=a==itemLength-v+1?v+1:v+o.scroll}else curr=a}else{if(a<0||a>itemLength-v)return;else curr=a}b=true;ul.animate(animCss=="left"?{left:-(curr*g)}:{top:-(curr*g)},o.speed,o.easing,function(){if(o.afterEnd)o.afterEnd.call(this,vis());b=false});if(!o.circular){$(o.btnPrev+","+o.btnNext).removeClass("disabled");$((curr-o.scroll<0&&o.btnPrev)||(curr+o.scroll>itemLength-v&&o.btnNext)||[]).addClass("disabled")}}return false}})};function css(a,b){return parseInt($.css(a[0],b))||0};function width(a){return a[0].offsetWidth+css(a,'marginLeft')+css(a,'marginRight')};function height(a){return a[0].offsetHeight+css(a,'marginTop')+css(a,'marginBottom')}})(jQuery);

/*!
 * (v) Compact labels plugin
 * Takes one option: labelOpacity [default: true] set to false to disable label opacity change on empty input focus
 */
(function($){$.fn.compactize=function(options){var defaults={labelOpacity:true};options=$.extend(defaults,options);return this.each(function(){var label=$(this),input=$('#'+label.attr('for'));input.focus(function(){if(options.labelOpacity){if(input.val()===''){label.css('opacity','0.5');}}else{label.hide();}});if(options.labelOpacity){input.keydown(function(){label.hide();label.css('opacity',1);});} input.blur(function(){if(input.val()===''){label.show();} if(options.labelOpacity){label.css('opacity',1);}});window.setTimeout(function(){label.toggle();},50);});};})(jQuery);

/*!
 * (v) hrefID jQuery extention
 * returns a valid #hash string from link href attribute in Internet Explorer
 */
(function($){$.fn.extend({hrefId:function(){return $(this).attr('href').substr($(this).attr('href').indexOf('#'));}});})(jQuery);

/*!
 * (v) EqualHeights v1.11
 * Sets equal height for all passed elements (keeping padding in mind)
 */
(function($){$.fn.equalHeights=function(){$(window).resize($.proxy(function(){var tallest=0;$(this).css('min-height',0);$(this).each(function(){if($(this).outerHeight()>tallest){tallest=$(this).outerHeight();}});$(this).each(function(){var padding=$(this).outerHeight()-$(this).height();var height=tallest-padding;$(this).css({'min-height':height});if($.browser.msie&&parseInt($.browser.version,10)==6)$(this).height(height);});},this)).triggerHandler('resize');return this;};})(jQuery);

/*!
 * Scripts
 *
 */
jQuery(function($) {

	var Engine = {
		utils : {
			links : function(){
				$('a[rel*=external]').click(function(e){
					e.preventDefault();
					window.open($(this).attr('href'));
				});
			},
			mails : function(){
				$('a[href^=mailto:]').each(function(){
					var mail = $(this).attr('href').replace('mailto:','');
					var replaced = mail.replace('/at/','@');
					$(this).attr('href','mailto:'+replaced);
					if($(this).text() == mail) {
						$(this).text(replaced);
					}
				});
			}
		},
		ui : {
			linkbox : function() {
				$('div.triplets-a div.box').click(function() {
					window.location = $(this).find('a:first').attr('href');
				});
			},
			showcase : function() {
				
				$('div.showcase-a').each(function() {

					var $root 		= $(this);
					var count 		= $root.find('li').size();
					var transition 	= 500;
					var delay 		= 3750;

					if(count <= 1) return false;

					var code = '<ul class="index"><li class="pause"><a href="#pause">Pause</a></li>';
					for (i = 0; i < count; i++) code += '<li><a href="#slide-'+ (i+1) +'"'+(i == 0 ? ' class="active"' : '')+'>'+(i+1)+'</a></li>';
					code += '</ul>';
					$root.append(code);

					// cycle
					var change = function() {	
						var $next = $root.find('ul.index li a.active:last').parent().next('li').find('a');
						if($next.size() === 0) $next = $root.find('ul.index li:eq(1) a');
						$next.trigger('click');
					};

					var start = function() {
						if(typeof showcaseAint != 'undefined') clearInterval(showcaseAint);
						showcaseAint = setInterval(function() { change(); },(delay+transition));
					};

					var stop = function() {
						if(typeof showcaseAint != 'undefined') clearInterval(showcaseAint);
					};

					// click
					$root.find('ul.index li a').click(function() {
						var $clicked = $(this);
						var index = $root.find('ul.index li a').index(this);

						// check
						if(index != 0 && ($root.find('ul.items li:animated').size() > 0 || $(this).is('.active'))) return false;

						// pause
						if(index == 0){
							if(!$clicked.is('.active')) stop();
							$clicked.toggleClass('active');
						} else {
							$root.find('ul.items li:visible').fadeOut(transition,function() {
								$clicked.addClass('active').parent().siblings().not('.pause').find('a.active').removeClass('active');
							});
							$root.find('ul.items li:eq('+(index-1)+')').fadeIn(transition);
						}

						return false;
					});

					// mouseenter
					$root.mouseenter(function() { 
						stop(); 
					}).mouseleave(function() {
						if(!$root.find('ul.index li:first a').is('.active')) start(); 
					});

					// init
					start();

				});

				$('div.showcase-b').each(function() {
					var $root = $(this);
					var count = $root.find('ul.items li').size();
					var start = 1;

					if(count <= 1) return false;

					var paging = '<ul class="pager">';
					for(i = 0; i < count; i++) paging += '<li'+(start - 1 === i ? ' class="active"' : '')+'>' + (i+1) + '</li>';
					paging += '</ul>';

					$root.append('<ul class="steps"><li class="prev">Previous</li><li class="next">Next</li></ul>' + paging);

				 	$root.find('div.wrap').jCarouselLite({
						visible: 1,
						start: (start-1),
						speed: 1000,
						auto: 3750,
						btnPrev: $root.find('ul.steps li.prev'),
						btnNext: $root.find('ul.steps li.next'),
						btnGo: $root.find('ul.pager li'),
						wrapper: $root,
						afterEnd : function(a) {
							var current = $root.find('ul.items li').index(a);
							if(current > count) current = 1;
							if(current < 1) current = count;

							$root.find('ul.pager li:eq('+(current-1)+')').addClass('active').siblings().removeClass('active');
						}
					});

				});
			}
		},
		design : {
			equalize : function() {
				$('#inner > div > div.header').equalHeights();
			}
		}
	};

	Engine.utils.links();
	Engine.utils.mails();
	Engine.ui.linkbox();
	Engine.ui.showcase();
	Engine.design.equalize();

});
