/* Author: Arthur Hulsman en Superrobin, Studio Stomp, arthur@studiostomp.nl, robin@studiostomp.nl */
document.write('<link rel="stylesheet" href="/css/javascript-only.css" type="text/css" media="screen" />');

$(document).ready(function(){

	$images = $("#images img").css({"float":"left"})
	$("#images").css({"overflow":"hidden"}).append($("<div></div>").css({"width":$images.width()*2}).append($images))
	$("#but_prev").click(slide);
	$("#but_next").click(slide);	
	$(document).keydown(function(e) { if (e.which == 39) { 
		if ($('textarea:focus,input:focus').length > 0) return true; // prevent partyshots script execution if we're in an input field
		slide(e); 
	}});
	$(document).keydown(function(e) { if (e.which == 37) { 
		if ($('textarea:focus,input:focus').length > 0) return true; // prevent partyshots script execution if we're in an input field
		slide(e);
	}});
	$('.jspDrag').css({"cursor":"pointer"});
	
	
	$('.loadmore').hide();
	
	// remove the href attribute from the videoButtons. Be sure to enable the fallback styling for the playButton in stomp_styles.css
	//$('.videoButton').removeHref();
	
	//tooltip
	$('.betterTooltip').betterTooltip({
		speed: 600, 
		delay: 300,
		hideDelay: 800
	});
	
	//fakelazyload teh articles
	$('.hoverArticle, .footer, .sectionArticle, .sectionHeadline').not('.partyShots *').fakelazyload({
		loadSpeed: 400,
		animationSpeed: 600
	});
	
	//fakelazyload the right side
	setTimeout(function(){
		$('.right').fakelazyload({
		loadSpeed: 200,
		animationSpeed: 600
	});
	}, 600);

	//hover mainmenu
	/*$('.mainbutton').cursorHover({
		outerImage: 'http://' + document.location.hostname + '/img/hoverWrap.png',
		innerImage: 'http://' + document.location.hostname + '/img/hoverInside.png',
		fadeSpeed: 300,
		innerBorder: 0,
		align: "bottom",
		zalign: "bottom"
	});*/

	//newsletter signup label
	$('label.infield').inFieldLabels();
	
	//show loadmore button
	setTimeout(enableLoadMore, 3000);
	
	$('.sectionHeadline .review IMG').reviewSlide({
		speed: 2000
	});
	
}); //end

function slide(e){
	
	e.preventDefault();

	var forward = ($(this).attr("id") === "but_next" || e.keyCode == 39);	//direction

	var $images = $("#images img");						//store images
	var $curImg = $images.not(':hidden');				//get current image
	
	self = this;
	
	if(self.sliding != true){
		// fix possible left-margin bug which makes image seem invisible
		$images.css('marginLeft','0px');
		if(forward){
			
			self.sliding = true;
			//make sure there is a next image
			if($curImg.next().length == 0) {
				$images.parent().append($images.first());
			}
			
			//get next image
			var $next = $curImg.next("img");
			
			//set ready for animation
			$next
				.show()
				.css({"margin-left":0})
			
			//animate
			$curImg
				.animate({"margin-left":-$curImg.width()}, "slow", function(){ $curImg.hide(); self.sliding = false; })
			
			// set jScrollPane to right position as well
			if ($next.attr('rel') > 2 &&  $next.attr('rel') < $('.thumbnails img').length-1 ) {
				var $thumb = $('.thumbnails a[rel='+($next.attr('rel')-2)+']').position();
				$('.scroll-pane').data('jsp').scrollToX($thumb.left);
			}
			else if ($next.attr('rel') >= 0 && $next.attr('rel') <= 2) {
				$('.scroll-pane').data('jsp').scrollToX(0);
			}
			else {
				$('.scroll-pane').data('jsp').scrollToX($('.scroll-pane').width());
			}
		}else{
			
			self.sliding = true;
			//make sure there is a next image
			if($curImg.prev().length == 0) {
				$images.parent().prepend($images.last());
			}
			
			//get next image
			var $next = $curImg.prev("img");
			
			//set ready for animation
			$next
				.css({"margin-left":-$next.width()})
				.show();
			
			//animate
			$next
				.animate({"margin-left":0}, "slow", function(){ $curImg.hide(); self.sliding = false; })
		
			// set jScrollPane to right position as well
			if ($next.attr('rel') > 2 &&  $next.attr('rel') < $('.thumbnails img').length-1 ) {
				var $thumb = $('.thumbnails a[rel='+($next.attr('rel')-2)+']').position();
				$('.scroll-pane').data('jsp').scrollToX($thumb.left);
			}
			else if ($next.attr('rel') >= 0 && $next.attr('rel') <= 2) {
				$('.scroll-pane').data('jsp').scrollToX(0);
			}
			else {
				$('.scroll-pane').data('jsp').scrollToX($('.scroll-pane').width());
			}

		}
	}
}
/* Activate loadmore button on a page if JS is on */
function enableLoadMore() {
	if ($(".loadmore").length > 0) {
		$(".loadmore").fadeIn('fast');
		$(".loadmore").attr('href',$(".loadmore").attr('href').substring(0,$(".loadmore").attr('href').lastIndexOf('/')+1)+'update.html');
	}
}

/* anchor scroll voor comments*/
window.setTimeout(function(){
    if(window.location.hash){
    	var fullUrl = window.location.hash;
    	var parts = fullUrl.split("#");
		var trgt = parts[1].split("?");
        var targetOffset  = $("#" + trgt).offset();
        var targetTop = targetOffset.top;
        if($("#commentsAnchor").length) $('html, body').animate({scrollTop:targetTop}, 1000, 'easeInQuint');
    }
}, 3000);




/* PLUGINS */

// remove href attribute from the video play buttons
// be sure to put in a href attribute in these play buttons when using this plugin.
// also a target :)
/*
(function($){
	
	$.fn.removeHref = function(options){
		
		var defaults = {};
		
		var options = $.extend(defaults, options);
		
		return this.each(function(){
			
			 $this = $(this);
			 $this.attr('href', "#");
			 
			 $this.live('click', function(e){
			 	e.preventDefault();
			 });
			
		});
		
	}
	
})(jQuery);
*/

// review slide
(function($){
	
	$.fn.reviewSlide = function(options){
		
		var defaults = {
			speed: 600
		};
		
		var options = $.extend(defaults, options);
		
		return this.each(function(){

			$this = $(this);
			
			/* Split image for reviews */
			var s = $this.attr('src');
			$('.sectionHeadline .review').html('<div class="review2"><div><img class="first" src="'+s+'" alt=""><img class="second" src="'+s+'" alt=""><img class="third" src="'+s+'" alt=""></div></div>');
			//$('.review2').scrollLeft(173);
			$('.review2').css('height', 316);
			$('.sectionHeadline .review IMG').css({
				position: 'absolute',
				marginLeft: 140,
				display: 'none'
				});
				
			$('.sectionHeadline .review IMG').delay(600).fadeIn('slow', function(){
				$('.sectionHeadline .review IMG.first').animate({
				marginLeft: 0
			}, {
				duration: 1000,
				specialEasing: 'easeInQuint' 
				}, function(){
					
				});
			
			$('.sectionHeadline .review IMG.second').animate({
				marginLeft: 293
			}, {
				duration: 1000,
				specialEasing: 'easeInQuint' 
				}, function(){
					
				});
			});	

		});
		
	}
	
})(jQuery);

// navigation
(function($){
	$.fn.cursorHover = function(options) {

		var defaults = {
			outerImage: "",
			innerImage: "",
			fadeSpeed: 300,
			innerBorder:0,
			align: "bottom",
			zalign: "bottom"
		};

		var options = $.extend(defaults, options);

		return this.each(function() {
			//Set background image to specified image
			$(this).wrap('<div class="innerImage">');
			var innerDiv = $('.innerImage');


			var wfBorder = innerDiv.width() - ( options.innerBorder * 2 );
			var hfBorder = innerDiv.height() - ( options.innerBorder * 2 );
			
			//Check if it's linked
			if ( $(this).find('a') ) {
				var linkExists = true;
				var linkText = $(this).find('a').text(); //Keep SEO linking
				linkText = linkText.replace(linkText, '<span>' + linkText + '</span>');
				var linkHTML = $(this).find('a').append( $(this).find('a').clone() ).remove().html();
				linkHTML = linkHTML.replace('</a>', '').replace('>','/>');
			}
			
			//Set inner image to specified image
			$(this).html('<img class="aInner" src="' + options.innerImage + '"/>');
			$(this).append('<img class="aTop" src="' + options.outerImage + '"/>');
			if ( linkExists == true ) {
				$(this).find('.aTop').wrap(linkHTML);
				$(this).find('a').append(linkText);
			}
			$(this).css({position:"relative"});
			var aInner = $('.aInner', this);
			var aTop = $('.aTop', this);
			
			switch (options.zalign)
			{
			case "bottom":
				var innerImageZ = 0;
				var outerImageZ = 0;
				break;
			case "top":
				var innerImageZ = 1;
				var outerImageZ = 2;
				break;
			}
			
			aInner.wrap('<div class="border">');
			$('.border').css({position:"absolute",top: options.innerBorder,left:options.innerBorder,width: wfBorder, height: hfBorder,overflow: "hidden", zIndex:innerImageZ});
			aInner.css({opacity:0, zIndex:outerImageZ});
			aTop.css({position:"absolute", top:0, left:0});
			
			switch (options.align)
			{
			case "bottom":
				alignment = ( innerDiv.height() - aInner.height() );
				break;
			case "center":
				alignment = ( innerDiv.height() - aInner.height() ) / 2;
				break;
			case "top":
				alignment = 0;
				break;
			}
			aInner.css({marginTop: alignment });

			//Center inner image inside outer image
			if (aInner.width() > $(this).width()) {
				aInner.css({
					marginLeft: ( aInner.width() - $(this).width() ) / -2
				});
			} else {
				aInner.css({
					marginLeft: ( $(this).width() - aInner.width() ) / 2
				});
			}

			//Fade on mouse over
			$(this).mouseenter(function(){
				aInner.stop().animate({
					opacity: 1
				}, options.fadeSpeed);
			});

			$(this).mousemove(function(e){
				var left = (e.pageX - $(this).offset().left - ( aInner.width() /2 ) );
				if ( left >= 0 ) {
					left = 0;
				}
				if ( ( left * -1 ) >= ( aInner.width() - innerDiv.width() ) ) {
					left = ( ( aInner.width() - innerDiv.width() ) * -1 );
				}
				aInner.css({marginLeft: left})
			});

			//Fade out on mouse leave
			$(this).mouseleave(function(){
				aInner.stop().animate({
					opacity: 0
				}, options.fadeSpeed);
			});
		});

		function extractUrl(input) {
			return input.replace(/"/g,"").replace(/url\(|\)$/ig, "");
		}
	};

})(jQuery);

// tooltips
(function($){
	
	$.fn.betterTooltip = function(options){
		
		var defaults = {
			speed: 200,
			delay: 300,
			hideDelay: 600
		};
		
		var options = $.extend(defaults, options);
		
		return this.each(function(){
			
			var $this 	        = $(this);
			$this.tip 	  		= $('.tooltip', $this);
			$this.buttons 		= $('.tooltip .contents .buttons-container .buttons', $this);

			$this.click(function(){
				$this.hideTip();
				$this.stopTimer($this);
			});
			
			$this.hover(function(){
				$this.setTimer();
				$this.stopHideTimer();
			},
			function(){
				$this.stopTimer();
				$this.setHideTimer();		
			});
			
			$this.setTimer = function(){
				$this.showTipTimer = setInterval($this.showTip, defaults.delay, $this, $this.tip, $this.buttons);
			}
			
			$this.stopTimer = function(){
				clearInterval($this.showTipTimer);
			}
			
			$this.setHideTimer = function(){
				$this.hideTipTimer = setInterval($this.hideTip, defaults.hideDelay);
			}
			
			$this.stopHideTimer = function(){
				clearInterval($this.hideTipTimer);
			}
			
			$this.hideTip = function(){
				$this.stopHideTimer();
				$this.tip.fadeOut('fast');
			}
			
			$this.showTip = function(){
				$this.stopTimer();
				
				$this.buttons.css('marginTop', 30);
				
				$this.tip.fadeIn('fast', function(){
					$this.buttons.animate({
						marginTop: 0
					}, {
						duration: 200
					});
				});	
			}
			
		});
		
	}
})(jQuery);

// infield labels
(function($){
	
    $.InFieldLabels = function(label,field, options){
        // To avoid scope issues, use 'base' instead of 'this'
        // to reference this class from internal events and functions.
        var base = this;
        
        // Access to jQuery and DOM versions of each element
        base.$label = $(label);
        base.label = label;

 		base.$field = $(field);
		base.field = field;
        
		base.$label.data("InFieldLabels", base);
		base.showing = true;
        
        base.init = function(){
			// Merge supplied options with default options
            base.options = $.extend({},$.InFieldLabels.defaultOptions, options);

			// Check if the field is already filled in
			if(base.$field.val() != ""){
				base.$label.hide();
				base.showing = false;
			};
			
			base.$field.focus(function(){
				base.fadeOnFocus();
			}).blur(function(){
				base.checkForEmpty(true);
			}).bind('keydown.infieldlabel',function(e){
				// Use of a namespace (.infieldlabel) allows us to
				// unbind just this method later
				base.hideOnChange(e);
			}).change(function(e){
				base.checkForEmpty();
			}).bind('onPropertyChange', function(){
				base.checkForEmpty();
			});
        };

		// If the label is currently showing
		// then fade it down to the amount
		// specified in the settings
		base.fadeOnFocus = function(){
			if(base.showing){
				base.setOpacity(base.options.fadeOpacity);
			};
		};
		
		base.setOpacity = function(opacity){
			base.$label.stop().animate({ opacity: opacity }, base.options.fadeDuration);
			base.showing = (opacity > 0.0);
		};
		
		// Checks for empty as a fail safe
		// set blur to true when passing from
		// the blur event
		base.checkForEmpty = function(blur){
			if(base.$field.val() == ""){
				base.prepForShow();
				base.setOpacity( blur ? 1.0 : base.options.fadeOpacity );
			} else {
				base.setOpacity(0.0);
			};
		};
		
		base.prepForShow = function(e){
			if(!base.showing) {
				// Prepare for a animate in...
				base.$label.css({opacity: 0.0}).show();
				
				// Reattach the keydown event
				base.$field.bind('keydown.infieldlabel',function(e){
					base.hideOnChange(e);
				});
			};
		};

		base.hideOnChange = function(e){
			if(
				(e.keyCode == 16) || // Skip Shift
				(e.keyCode == 9) // Skip Tab
			  ) return; 
			
			if(base.showing){
				base.$label.hide();
				base.showing = false;
			};
			
			// Remove keydown event to save on CPU processing
			base.$field.unbind('keydown.infieldlabel');
		};
      
		// Run the initialization method
        base.init();
    };
	
    $.InFieldLabels.defaultOptions = {
        fadeOpacity: 0.5, // Once a field has focus, how transparent should the label be
		fadeDuration: 300 // How long should it take to animate from 1.0 opacity to the fadeOpacity
    };
	

    $.fn.inFieldLabels = function(options){
        return this.each(function(){
			// Find input or textarea based on for= attribute
			// The for attribute on the label must contain the ID
			// of the input or textarea element
			var for_attr = $(this).attr('for');
			if( !for_attr ) return; // Nothing to attach, since the for field wasn't used
			
			
			// Find the referenced input or textarea element
			var $field = $(
				"input#" + for_attr + "[type='text']," + 
				"input#" + for_attr + "[type='password']," + 
				"textarea#" + for_attr
				);
				
			if( $field.length == 0) return; // Again, nothing to attach
			
			// Only create object for input[text], input[password], or textarea
            (new $.InFieldLabels(this, $field[0], options));
        });
    };
	
})(jQuery);

// fake lazy load
(function($){
	
	$.fn.fakelazyload = function(options){
		
		var defaults = {
			loadSpeed: 600,
			animationSpeed: 300
		};
		
		var options = $.extend(defaults, options);
		
		$(this).each(function(i, el){
			
			 window.setTimeout(function(){
			    $(el).fadeIn(defaults.animationSpeed, function(){
			    	
			    });
			  }, defaults.loadSpeed * i);
			
		});
		
	}
	
})(jQuery);


// jQuery easing
/*
 * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
 *
 * Uses the built in easing capabilities added In jQuery 1.1
 * to offer multiple easing options
 *
 * TERMS OF USE - jQuery Easing
 * 
 * Open source under the BSD License. 
 * 
 * Copyright Â© 2008 George McGinley Smith
 * All rights reserved.
 * 
 * Redistribution and use in source and binary forms, with or without modification, 
 * are permitted provided that the following conditions are met:
 * 
 * Redistributions of source code must retain the above copyright notice, this list of 
 * conditions and the following disclaimer.
 * Redistributions in binary form must reproduce the above copyright notice, this list 
 * of conditions and the following disclaimer in the documentation and/or other materials 
 * provided with the distribution.
 * 
 * Neither the name of the author nor the names of contributors may be used to endorse 
 * or promote products derived from this software without specific prior written permission.
 * 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY 
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 *  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
 *  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 
 * OF THE POSSIBILITY OF SUCH DAMAGE. 
 *
*/

// t: current time, b: begInnIng value, c: change In value, d: duration
jQuery.easing['jswing'] = jQuery.easing['swing'];

jQuery.extend( jQuery.easing,
{
	def: 'easeOutQuad',
	swing: function (x, t, b, c, d) {
		//alert(jQuery.easing.default);
		return jQuery.easing[jQuery.easing.def](x, t, b, c, d);
	},
	easeInQuad: function (x, t, b, c, d) {
		return c*(t/=d)*t + b;
	},
	easeOutQuad: function (x, t, b, c, d) {
		return -c *(t/=d)*(t-2) + b;
	},
	easeInOutQuad: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t + b;
		return -c/2 * ((--t)*(t-2) - 1) + b;
	},
	easeInCubic: function (x, t, b, c, d) {
		return c*(t/=d)*t*t + b;
	},
	easeOutCubic: function (x, t, b, c, d) {
		return c*((t=t/d-1)*t*t + 1) + b;
	},
	easeInOutCubic: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t*t + b;
		return c/2*((t-=2)*t*t + 2) + b;
	},
	easeInQuart: function (x, t, b, c, d) {
		return c*(t/=d)*t*t*t + b;
	},
	easeOutQuart: function (x, t, b, c, d) {
		return -c * ((t=t/d-1)*t*t*t - 1) + b;
	},
	easeInOutQuart: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t*t*t + b;
		return -c/2 * ((t-=2)*t*t*t - 2) + b;
	},
	easeInQuint: function (x, t, b, c, d) {
		return c*(t/=d)*t*t*t*t + b;
	},
	easeOutQuint: function (x, t, b, c, d) {
		return c*((t=t/d-1)*t*t*t*t + 1) + b;
	},
	easeInOutQuint: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t*t*t*t + b;
		return c/2*((t-=2)*t*t*t*t + 2) + b;
	},
	easeInSine: function (x, t, b, c, d) {
		return -c * Math.cos(t/d * (Math.PI/2)) + c + b;
	},
	easeOutSine: function (x, t, b, c, d) {
		return c * Math.sin(t/d * (Math.PI/2)) + b;
	},
	easeInOutSine: function (x, t, b, c, d) {
		return -c/2 * (Math.cos(Math.PI*t/d) - 1) + b;
	},
	easeInExpo: function (x, t, b, c, d) {
		return (t==0) ? b : c * Math.pow(2, 10 * (t/d - 1)) + b;
	},
	easeOutExpo: function (x, t, b, c, d) {
		return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b;
	},
	easeInOutExpo: function (x, t, b, c, d) {
		if (t==0) return b;
		if (t==d) return b+c;
		if ((t/=d/2) < 1) return c/2 * Math.pow(2, 10 * (t - 1)) + b;
		return c/2 * (-Math.pow(2, -10 * --t) + 2) + b;
	},
	easeInCirc: function (x, t, b, c, d) {
		return -c * (Math.sqrt(1 - (t/=d)*t) - 1) + b;
	},
	easeOutCirc: function (x, t, b, c, d) {
		return c * Math.sqrt(1 - (t=t/d-1)*t) + b;
	},
	easeInOutCirc: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return -c/2 * (Math.sqrt(1 - t*t) - 1) + b;
		return c/2 * (Math.sqrt(1 - (t-=2)*t) + 1) + b;
	},
	easeInElastic: function (x, t, b, c, d) {
		var s=1.70158;var p=0;var a=c;
		if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
		if (a < Math.abs(c)) { a=c; var s=p/4; }
		else var s = p/(2*Math.PI) * Math.asin (c/a);
		return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
	},
	easeOutElastic: function (x, t, b, c, d) {
		var s=1.70158;var p=0;var a=c;
		if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
		if (a < Math.abs(c)) { a=c; var s=p/4; }
		else var s = p/(2*Math.PI) * Math.asin (c/a);
		return a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b;
	},
	easeInOutElastic: function (x, t, b, c, d) {
		var s=1.70158;var p=0;var a=c;
		if (t==0) return b;  if ((t/=d/2)==2) return b+c;  if (!p) p=d*(.3*1.5);
		if (a < Math.abs(c)) { a=c; var s=p/4; }
		else var s = p/(2*Math.PI) * Math.asin (c/a);
		if (t < 1) return -.5*(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
		return a*Math.pow(2,-10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b;
	},
	easeInBack: function (x, t, b, c, d, s) {
		if (s == undefined) s = 1.70158;
		return c*(t/=d)*t*((s+1)*t - s) + b;
	},
	easeOutBack: function (x, t, b, c, d, s) {
		if (s == undefined) s = 1.70158;
		return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
	},
	easeInOutBack: function (x, t, b, c, d, s) {
		if (s == undefined) s = 1.70158; 
		if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;
		return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b;
	},
	easeInBounce: function (x, t, b, c, d) {
		return c - jQuery.easing.easeOutBounce (x, d-t, 0, c, d) + b;
	},
	easeOutBounce: function (x, t, b, c, d) {
		if ((t/=d) < (1/2.75)) {
			return c*(7.5625*t*t) + b;
		} else if (t < (2/2.75)) {
			return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;
		} else if (t < (2.5/2.75)) {
			return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;
		} else {
			return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;
		}
	},
	easeInOutBounce: function (x, t, b, c, d) {
		if (t < d/2) return jQuery.easing.easeInBounce (x, t*2, 0, c, d) * .5 + b;
		return jQuery.easing.easeOutBounce (x, t*2-d, 0, c, d) * .5 + c*.5 + b;
	}
});


/*
* jQuery Color Animations v@VERSION
* http://jquery.org/
*
* Copyright 2011 John Resig
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*
* Date: @DATE
*/

(function( jQuery, undefined ){
var stepHooks = "backgroundColor borderBottomColor borderLeftColor borderRightColor borderTopColor color outlineColor".split(" "),

// plusequals test for += 100 -= 100
rplusequals = /^([\-+])=\s*(\d+\.?\d*)/,
// a set of RE's that can match strings and generate color tuples.
stringParsers = [{
re: /rgba?\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*(?:,\s*(\d+(?:\.\d+)?)\s*)?\)/,
parse: function( execResult ) {
return [
execResult[ 1 ],
execResult[ 2 ],
execResult[ 3 ],
execResult[ 4 ]
];
}
}, {
re: /rgba?\(\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*(?:,\s*(\d+(?:\.\d+)?)\s*)?\)/,
parse: function( execResult ) {
return [
2.55 * execResult[1],
2.55 * execResult[2],
2.55 * execResult[3],
execResult[ 4 ]
];
}
}, {
re: /#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/,
parse: function( execResult ) {
return [
parseInt( execResult[ 1 ], 16 ),
parseInt( execResult[ 2 ], 16 ),
parseInt( execResult[ 3 ], 16 )
];
}
}, {
re: /#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/,
parse: function( execResult ) {
return [
parseInt( execResult[ 1 ] + execResult[ 1 ], 16 ),
parseInt( execResult[ 2 ] + execResult[ 2 ], 16 ),
parseInt( execResult[ 3 ] + execResult[ 3 ], 16 )
];
}
}, {
re: /hsla?\(\s*(\d+(?:\.\d+)?)\s*,\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*(?:,\s*(\d+(?:\.\d+)?)\s*)?\)/,
space: "hsla",
parse: function( execResult ) {
return [
execResult[1],
execResult[2] / 100,
execResult[3] / 100,
execResult[4]
];
}
}],

// jQuery.Color( )
color = jQuery.Color = function( color, green, blue, alpha ) {
return new jQuery.Color.fn.parse( color, green, blue, alpha );
},
spaces = {
rgba: {
cache: "_rgba",
props: {
red: {
idx: 0,
type: "byte",
empty: true
},
green: {
idx: 1,
type: "byte",
empty: true
},
blue: {
idx: 2,
type: "byte",
empty: true
},
alpha: {
idx: 3,
type: "percent",
def: 1
}
}
},
hsla: {
cache: "_hsla",
props: {
hue: {
idx: 0,
type: "degrees",
empty: true
},
saturation: {
idx: 1,
type: "percent",
empty: true
},
lightness: {
idx: 2,
type: "percent",
empty: true
}
}
}
},
propTypes = {
"byte": {
floor: true,
min: 0,
max: 255
},
"percent": {
min: 0,
max: 1
},
"degrees": {
mod: 360,
floor: true
}
},
rgbaspace = spaces.rgba.props,
support = color.support = {},

// colors = jQuery.Color.names
colors,

// local aliases of functions called often
each = jQuery.each;

spaces.hsla.props.alpha = rgbaspace.alpha;

function clamp( value, prop, alwaysAllowEmpty ) {
var type = propTypes[ prop.type ] || {},
allowEmpty = prop.empty || alwaysAllowEmpty;

if ( allowEmpty && value == null ) {
return null;
}
if ( prop.def && value == null ) {
return prop.def;
}
if ( type.floor ) {
value = ~~value;
} else {
value = parseFloat( value );
}
if ( value == null || isNaN( value ) ) {
return prop.def;
}
if ( type.mod ) {
value = value % type.mod;
// -10 -> 350
return value < 0 ? type.mod + value : value;
}

// for now all property types without mod have min and max
return type.min > value ? type.min : type.max < value ? type.max : value;
}

color.fn = color.prototype = {
constructor: color,
parse: function( red, green, blue, alpha ) {
if ( red === undefined ) {
this._rgba = [ null, null, null, null ];
return this;
}
if ( red instanceof jQuery || red.nodeType ) {
red = red instanceof jQuery ? red.css( green ) : jQuery( red ).css( green );
green = undefined;
}

var inst = this,
type = jQuery.type( red ),
rgba = this._rgba = [],
source;

// more than 1 argument specified - assume ( red, green, blue, alpha )
if ( green !== undefined ) {
red = [ red, green, blue, alpha ];
type = "array";
}

if ( type === "string" ) {
red = red.toLowerCase();
each( stringParsers, function( i, parser ) {
var match = parser.re.exec( red ),
values = match && parser.parse( match ),
parsed,
spaceName = parser.space || "rgba",
cache = spaces[ spaceName ].cache;


if ( values ) {
parsed = inst[ spaceName ]( values );

// if this was an rgba parse the assignment might happen twice
// oh well....
inst[ cache ] = parsed[ cache ];
rgba = inst._rgba = parsed._rgba;

// exit each( stringParsers ) here because we matched
return false;
}
});

// Found a stringParser that handled it
if ( rgba.length !== 0 ) {

// if this came from a parsed string, force "transparent" when alpha is 0
// chrome, (and maybe others) return "transparent" as rgba(0,0,0,0)
if ( Math.max.apply( Math, rgba ) === 0 ) {
jQuery.extend( rgba, colors.transparent );
}
return this;
}

// named colors / default - filter back through parse function
red = colors[ red ] || colors._default;
return this.parse( red );
}

if ( type === "array" ) {
each( rgbaspace, function( key, prop ) {
rgba[ prop.idx ] = clamp( red[ prop.idx ], prop );
});
return this;
}

if ( type === "object" ) {
if ( red instanceof color ) {
each( spaces, function( spaceName, space ) {
if ( red[ space.cache ] ) {
inst[ space.cache ] = red[ space.cache ].slice();
}
});
} else {
each( spaces, function( spaceName, space ) {
each( space.props, function( key, prop ) {
var cache = space.cache;

// if the cache doesn't exist, and we know how to convert
if ( !inst[ cache ] && space.to ) {

// if the value was null, we don't need to copy it
// if the key was alpha, we don't need to copy it either
if ( red[ key ] == null || key === "alpha") {
return;
}
inst[ cache ] = space.to( inst._rgba );
}

// this is the only case where we allow nulls for ALL properties.
// call clamp with alwaysAllowEmpty
inst[ cache ][ prop.idx ] = clamp( red[ key ], prop, true );
});
});
}
return this;
}
},
is: function( compare ) {
var is = color( compare ),
same = true,
myself = this;

each( spaces, function( _, space ) {
var isCache = is[ space.cache ],
localCache;
if (isCache) {
localCache = myself[ space.cache ] || space.to && space.to( myself._rgba ) || [];
each( space.props, function( _, prop ) {
if ( isCache[ prop.idx ] != null ) {
same = ( isCache[ prop.idx ] == localCache[ prop.idx ] );
return same;
}
});
}
return same;
});
return same;
},
_space: function() {
var used = [],
inst = this;
each( spaces, function( spaceName, space ) {
if ( inst[ space.cache ] ) {
used.push( spaceName );
}
});
return used.pop();
},
transition: function( other, distance ) {
var end = color( other ),
spaceName = end._space(),
space = spaces[ spaceName ],
start = this[ space.cache ] || space.to( this._rgba ),
result = start.slice();

end = end[ space.cache ];
each( space.props, function( key, prop ) {
var index = prop.idx,
startValue = start[ index ],
endValue = end[ index ],
type = propTypes[ prop.type ] || {};

// if null, don't override start value
if ( endValue === null ) {
return;
}
// if null - use end
if ( startValue === null ) {
result[ index ] = endValue;
} else {
if ( type.mod ) {
if ( endValue - startValue > type.mod / 2 ) {
startValue += type.mod;
} else if ( startValue - endValue > type.mod / 2 ) {
startValue -= type.mod;
}
}
result[ prop.idx ] = clamp( ( endValue - startValue ) * distance + startValue, prop );
}
});
return this[ spaceName ]( result );
},
blend: function( opaque ) {
// if we are already opaque - return ourself
if ( this._rgba[ 3 ] === 1 ) {
return this;
}

var rgb = this._rgba.slice(),
a = rgb.pop(),
blend = color( opaque )._rgba;

return color( jQuery.map( rgb, function( v, i ) {
return ( 1 - a ) * blend[ i ] + a * v;
}));
},
toRgbaString: function() {
var prefix = "rgba(",
rgba = jQuery.map( this._rgba, function( v, i ) {
return v == null ? ( i > 2 ? 1 : 0 ) : v;
});

if ( rgba[ 3 ] === 1 ) {
rgba.pop();
prefix = "rgb(";
}

return prefix + rgba.join(",") + ")";
},
toHslaString: function() {
var prefix = "hsla(",
hsla = jQuery.map( this.hsla(), function( v, i ) {
if ( v == null ) {
v = i > 2 ? 1 : 0;
}

// catch 1 and 2
if ( i && i < 3 ) {
v = Math.round( v * 100 ) + "%";
}
return v;
});

if ( hsla[ 3 ] == 1 ) {
hsla.pop();
prefix = "hsl(";
}
return prefix + hsla.join(",") + ")";
},
toHexString: function( includeAlpha ) {
var rgba = this._rgba.slice(),
alpha = rgba.pop();

if ( includeAlpha ) {
rgba.push( ~~( alpha * 255 ) );
}

return "#" + jQuery.map( rgba, function( v, i ) {

// default to 0 when nulls exist
v = ( v || 0 ).toString( 16 );
return v.length == 1 ? "0" + v : v;
}).join("");
},
toString: function() {
return this._rgba[ 3 ] === 0 ? "transparent" : this.toRgbaString();
}
};
color.fn.parse.prototype = color.fn;

// hsla conversions adapted from:
// http://www.google.com/codesearch/p#OAMlx_jo-ck/src/third_party/WebKit/Source/WebCore/inspector/front-end/Color.js&d=7&l=193

function hue2rgb( p, q, h ) {
h = ( h + 1 ) % 1;
if ( h * 6 < 1 ) {
return p + (q - p) * 6 * h;
}
if ( h * 2 < 1) {
return q;
}
if ( h * 3 < 2 ) {
return p + (q - p) * ((2/3) - h) * 6;
}
return p;
}

spaces.hsla.to = function ( rgba ) {
if ( rgba[ 0 ] == null || rgba[ 1 ] == null || rgba[ 2 ] == null ) {
return [ null, null, null, rgba[ 3 ] ];
}
var r = rgba[ 0 ] / 255,
g = rgba[ 1 ] / 255,
b = rgba[ 2 ] / 255,
a = rgba[ 3 ],
max = Math.max( r, g, b ),
min = Math.min( r, g, b ),
diff = max - min,
add = max + min,
l = add * 0.5,
h, s;

if ( min === max ) {
h = 0;
} else if ( r === max ) {
h = ( 60 * ( g - b ) / diff ) + 360;
} else if ( g === max ) {
h = ( 60 * ( b - r ) / diff ) + 120;
} else {
h = ( 60 * ( r - g ) / diff ) + 240;
}

if ( l === 0 || l === 1 ) {
s = l;
} else if ( l <= 0.5 ) {
s = diff / add;
} else {
s = diff / ( 2 - add );
}
return [ Math.round(h) % 360, s, l, a == null ? 1 : a ];
};

spaces.hsla.from = function ( hsla ) {
if ( hsla[ 0 ] == null || hsla[ 1 ] == null || hsla[ 2 ] == null ) {
return [ null, null, null, hsla[ 3 ] ];
}
var h = hsla[ 0 ] / 360,
s = hsla[ 1 ],
l = hsla[ 2 ],
a = hsla[ 3 ],
q = l <= 0.5 ? l * ( 1 + s ) : l + s - l * s,
p = 2 * l - q,
r, g, b;

return [
Math.round( hue2rgb( p, q, h + ( 1 / 3 ) ) * 255 ),
Math.round( hue2rgb( p, q, h ) * 255 ),
Math.round( hue2rgb( p, q, h - ( 1 / 3 ) ) * 255 ),
a
];
};


each( spaces, function( spaceName, space ) {
var props = space.props,
cache = space.cache,
to = space.to,
from = space.from;

// makes rgba() and hsla()
color.fn[ spaceName ] = function( value ) {

// generate a cache for this space if it doesn't exist
if ( to && !this[ cache ] ) {
this[ cache ] = to( this._rgba );
}
if ( value === undefined ) {
return this[ cache ].slice();
}

var type = jQuery.type( value ),
arr = ( type === "array" || type === "object" ) ? value : arguments,
local = this[ cache ].slice(),
ret;

each( props, function( key, prop ) {
var val = arr[ type === "object" ? key : prop.idx ];
if ( val == null ) {
val = local[ prop.idx ];
}
local[ prop.idx ] = clamp( val, prop );
});

if ( from ) {
ret = color( from( local ) );
ret[ cache ] = local;
return ret;
} else {
return color( local );
}
};

// makes red() green() blue() alpha() hue() saturation() lightness()
each( props, function( key, prop ) {
// alpha is included in more than one space
if ( color.fn[ key ] ) {
return;
}
color.fn[ key ] = function( value ) {
var vtype = jQuery.type( value ),
fn = ( key === 'alpha' ? ( this._hsla ? 'hsla' : 'rgba' ) : spaceName ),
local = this[ fn ](),
cur = local[ prop.idx ],
match;

if ( vtype === "undefined" ) {
return cur;
}

if ( vtype === "function" ) {
value = value.call( this, cur );
vtype = jQuery.type( value );
}
if ( value == null && prop.empty ) {
return this;
}
if ( vtype === "string" ) {
match = rplusequals.exec( value );
if ( match ) {
value = cur + parseFloat( match[ 2 ] ) * ( match[ 1 ] === "+" ? 1 : -1 );
}
}
local[ prop.idx ] = value;
return this[ fn ]( local );
};
});
});

// add .fx.step functions
each( stepHooks, function( i, hook ) {
jQuery.cssHooks[ hook ] = {
set: function( elem, value ) {
value = color( value );
if ( !support.rgba && value._rgba[ 3 ] !== 1 ) {
var backgroundColor,
curElem = hook === "backgroundColor" ? elem.parentNode : elem;
do {
backgroundColor = jQuery.curCSS( curElem, "backgroundColor" );
} while (
( backgroundColor === "" || backgroundColor === "transparent" ) &&
( curElem = curElem.parentNode ) &&
curElem.style
);

value = value.blend( backgroundColor && backgroundColor !== "transparent" ?
backgroundColor :
"_default" );
}

value = value.toRgbaString();

elem.style[ hook ] = value;
}
};
jQuery.fx.step[ hook ] = function( fx ) {
if ( !fx.colorInit ) {
fx.start = color( fx.elem, hook );
fx.end = color( fx.end );
fx.colorInit = true;
}
jQuery.cssHooks[ hook ].set( fx.elem, fx.start.transition( fx.end, fx.pos ) );
};
});

// detect rgba support
jQuery(function() {
var div = document.createElement( "div" ),
div_style = div.style;

div_style.cssText = "background-color:rgba(1,1,1,.5)";
support.rgba = div_style.backgroundColor.indexOf( "rgba" ) > -1;
});

// Some named colors to work with
// From Interface by Stefan Petre
// http://interface.eyecon.ro/
colors = jQuery.Color.names = {
aqua: "#00ffff",
azure: "#f0ffff",
beige: "#f5f5dc",
black: "#000000",
blue: "#0000ff",
brown: "#a52a2a",
cyan: "#00ffff",
darkblue: "#00008b",
darkcyan: "#008b8b",
darkgrey: "#a9a9a9",
darkgreen: "#006400",
darkkhaki: "#bdb76b",
darkmagenta: "#8b008b",
darkolivegreen: "#556b2f",
darkorange: "#ff8c00",
darkorchid: "#9932cc",
darkred: "#8b0000",
darksalmon: "#e9967a",
darkviolet: "#9400d3",
fuchsia: "#ff00ff",
gold: "#ffd700",
green: "#008000",
indigo: "#4b0082",
khaki: "#f0e68c",
lightblue: "#add8e6",
lightcyan: "#e0ffff",
lightgreen: "#90ee90",
lightgrey: "#d3d3d3",
lightpink: "#ffb6c1",
lightyellow: "#ffffe0",
lime: "#00ff00",
magenta: "#ff00ff",
maroon: "#800000",
navy: "#000080",
olive: "#808000",
orange: "#ffa500",
pink: "#ffc0cb",
purple: "#800080",
violet: "#800080",
red: "#ff0000",
silver: "#c0c0c0",
white: "#ffffff",
yellow: "#ffff00",
transparent: [ null, null, null, 0 ],
_default: "#ffffff"
};
})( jQuery );


