/**
 * jQuery.ScrollTo - Easy element scrolling using jQuery.
 * Copyright (c) 2007-2009 Ariel Flesler - aflesler(at)gmail(dot)com | http://flesler.blogspot.com
 * Dual licensed under MIT and GPL.
 * Date: 5/25/2009
 * @author Ariel Flesler
 * @version 1.4.2
 *
 * http://flesler.blogspot.com/2007/10/jqueryscrollto.html
 */
;(function(d){var k=d.scrollTo=function(a,i,e){d(window).scrollTo(a,i,e)};k.defaults={axis:'xy',duration:parseFloat(d.fn.jquery)>=1.3?0:1};k.window=function(a){return d(window)._scrollable()};d.fn._scrollable=function(){return this.map(function(){var a=this,i=!a.nodeName||d.inArray(a.nodeName.toLowerCase(),['iframe','#document','html','body'])!=-1;if(!i)return a;var e=(a.contentWindow||a).document||a.ownerDocument||a;return d.browser.safari||e.compatMode=='BackCompat'?e.body:e.documentElement})};d.fn.scrollTo=function(n,j,b){if(typeof j=='object'){b=j;j=0}if(typeof b=='function')b={onAfter:b};if(n=='max')n=9e9;b=d.extend({},k.defaults,b);j=j||b.speed||b.duration;b.queue=b.queue&&b.axis.length>1;if(b.queue)j/=2;b.offset=p(b.offset);b.over=p(b.over);return this._scrollable().each(function(){var q=this,r=d(q),f=n,s,g={},u=r.is('html,body');switch(typeof f){case'number':case'string':if(/^([+-]=)?\d+(\.\d+)?(px|%)?$/.test(f)){f=p(f);break}f=d(f,this);case'object':if(f.is||f.style)s=(f=d(f)).offset()}d.each(b.axis.split(''),function(a,i){var e=i=='x'?'Left':'Top',h=e.toLowerCase(),c='scroll'+e,l=q[c],m=k.max(q,i);if(s){g[c]=s[h]+(u?0:l-r.offset()[h]);if(b.margin){g[c]-=parseInt(f.css('margin'+e))||0;g[c]-=parseInt(f.css('border'+e+'Width'))||0}g[c]+=b.offset[h]||0;if(b.over[h])g[c]+=f[i=='x'?'width':'height']()*b.over[h]}else{var o=f[h];g[c]=o.slice&&o.slice(-1)=='%'?parseFloat(o)/100*m:o}if(/^\d+$/.test(g[c]))g[c]=g[c]<=0?0:Math.min(g[c],m);if(!a&&b.queue){if(l!=g[c])t(b.onAfterFirst);delete g[c]}});t(b.onAfter);function t(a){r.animate(g,j,b.easing,a&&function(){a.call(this,n,b)})}}).end()};k.max=function(a,i){var e=i=='x'?'Width':'Height',h='scroll'+e;if(!d(a).is('html,body'))return a[h]-d(a)[e.toLowerCase()]();var c='client'+e,l=a.ownerDocument.documentElement,m=a.ownerDocument.body;return Math.max(l[h],m[h])-Math.min(l[c],m[c])};function p(a){return typeof a=='object'?a:{top:a,left:a}}})(jQuery);

/**
 * jQuery.LocalScroll - Animated scrolling navigation, using anchors.
 * Copyright (c) 2007-2009 Ariel Flesler - aflesler(at)gmail(dot)com | http://flesler.blogspot.com
 * Dual licensed under MIT and GPL.
 * Date: 3/11/2009
 * @author Ariel Flesler
 * @version 1.2.7
 **/
;(function($){var l=location.href.replace(/#.*/,'');var g=$.localScroll=function(a){$('body').localScroll(a)};g.defaults={duration:1e3,axis:'y',event:'click',stop:true,target:window,reset:true};g.hash=function(a){if(location.hash){a=$.extend({},g.defaults,a);a.hash=false;if(a.reset){var e=a.duration;delete a.duration;$(a.target).scrollTo(0,a);a.duration=e}i(0,location,a)}};$.fn.localScroll=function(b){b=$.extend({},g.defaults,b);return b.lazy?this.bind(b.event,function(a){var e=$([a.target,a.target.parentNode]).filter(d)[0];if(e)i(a,e,b)}):this.find('a,area').filter(d).bind(b.event,function(a){i(a,this,b)}).end().end();function d(){return!!this.href&&!!this.hash&&this.href.replace(this.hash,'')==l&&(!b.filter||$(this).is(b.filter))}};function i(a,e,b){var d=e.hash.slice(1),f=document.getElementById(d)||document.getElementsByName(d)[0];if(!f)return;if(a)a.preventDefault();var h=$(b.target);if(b.lock&&h.is(':animated')||b.onBefore&&b.onBefore.call(b,a,f,h)===false)return;if(b.stop)h.stop(true);if(b.hash){var j=f.id==d?'id':'name',k=$('<a> </a>').attr(j,d).css({position:'absolute',top:$(window).scrollTop(),left:$(window).scrollLeft()});f[j]='';$('body').prepend(k);location=e.hash;k.remove();f[j]=d}h.scrollTo(f,b).trigger('notify.serialScroll',[f])}})(jQuery);

/**
* hoverIntent r6 // 2011.02.26 // jQuery 1.5.1+
* <http://cherne.net/brian/resources/jquery.hoverIntent.html>
* 
* @param  f  onMouseOver function || An object with configuration options
* @param  g  onMouseOut function  || Nothing (use configuration options object)
* @author    Brian Cherne brian(at)cherne(dot)net
*/
(function($){$.fn.hoverIntent=function(f,g){var cfg={sensitivity:7,interval:100,timeout:0};cfg=$.extend(cfg,g?{over:f,out:g}:f);var cX,cY,pX,pY;var track=function(ev){cX=ev.pageX;cY=ev.pageY};var compare=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);if((Math.abs(pX-cX)+Math.abs(pY-cY))<cfg.sensitivity){$(ob).unbind("mousemove",track);ob.hoverIntent_s=1;return cfg.over.apply(ob,[ev])}else{pX=cX;pY=cY;ob.hoverIntent_t=setTimeout(function(){compare(ev,ob)},cfg.interval)}};var delay=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);ob.hoverIntent_s=0;return cfg.out.apply(ob,[ev])};var handleHover=function(e){var ev=jQuery.extend({},e);var ob=this;if(ob.hoverIntent_t){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t)}if(e.type=="mouseenter"){pX=ev.pageX;pY=ev.pageY;$(ob).bind("mousemove",track);if(ob.hoverIntent_s!=1){ob.hoverIntent_t=setTimeout(function(){compare(ev,ob)},cfg.interval)}}else{$(ob).unbind("mousemove",track);if(ob.hoverIntent_s==1){ob.hoverIntent_t=setTimeout(function(){delay(ev,ob)},cfg.timeout)}}};return this.bind('mouseenter',handleHover).bind('mouseleave',handleHover)}})(jQuery);

$(document).ready(function(){
  $('.page-template-page-current-story .column:first, .single .column:first').addClass("intro");
  $("#rightControl").click(function() {
				$('.sprite').spState(2).sprite({fps: 27, no_of_frames: 8, play_frames: 24})
  });
  $("#leftControl").click(function() {
				$('.sprite').spState(1).sprite({fps: 27, no_of_frames: 8, play_frames: 24})
  });
  $('#rightControl').delay(400).animate({ right: '80px' }, 400, 'easeOutCubic' ).delay(200).animate({ right: '0px' }, 800, 'easeOutBounce' );
  $('a.tooltip').mouseover(function(e) {
				var tip = $(this).attr('title');	
				$(this).attr('title','');
				$('body').append('<div id="tooltip">' + tip + '</div>');		
				$('#tooltip').fadeIn('500');
				$('#tooltip').fadeTo('10',0.9);
			}).mousemove(function(e) {
				$('#tooltip').css('top', e.pageY + -40 );
				$('#tooltip').css('left', e.pageX + -100 );
			}).mouseout(function() {
				$(this).attr('title',$('#tooltip').html());
				$('body').children('#tooltip').remove();
	});
	
  	//$('menu').hover(function () {
//        $(this).animate({top: '0px'}, {queue: false, duration: 600, easing: 'easeOutQuad' });
//		$('.menu-arrow a').addClass('hovered');
//		//$('.enter-gateways').animate({opacity:0.2},300);
//    }, function () {
//        $(this).animate({top: '-80px'}, {queue: false, duration: 600, easing: 'easeOutQuad' });
//		$('.menu-arrow a').removeClass('hovered');
//		//$('.enter-gateways').animate({opacity:1.0},300);
//    });
	
	function menuHover() {
        $(this).animate({top: '0px'}, {queue: false, duration: 600, easing: 'easeOutQuad' });
		$('.menu-arrow a').addClass('hovered');
		}
	function menuStopHover() {
        $(this).animate({top: '-80px'}, {queue: false, duration: 600, easing: 'easeOutQuad' });
		$('.menu-arrow a').removeClass('hovered');
		 }
		 
	$('menu').hoverIntent({
		sensitivity: 2, // number = sensitivity threshold (must be 1 or higher)
		interval: 100,   // number = milliseconds of polling interval
		over: menuHover,  // function = onMouseOver callback (required)
		timeout: 100,   // number = milliseconds delay before onMouseOut function call
		out: menuStopHover    // function = onMouseOut callback (required)
	});
	
	//$('li.menu-hover').hover(function () {
//        $('menu li').stop().animate({opacity:0.3}, 250);
//		$(this).stop().animate({opacity:1}, 10);
//		$('.menu-hover li').stop().animate({opacity:1}, 10);
//		$(this).find('ul').fadeIn(400);
//    }, function () {
//        $('menu li').stop().animate({opacity:1}, 300);
//		$(this).find('ul').fadeOut(400);
//    });
	
	function subMenuHover() {
        $('menu li').stop().animate({opacity:0.3}, 250);
		$(this).stop().animate({opacity:1}, 10);
		$('.menu-hover li').stop().animate({opacity:1}, 10);
		$(this).find('ul').fadeIn(400);
    } 
	function subMenuStopHover() {
        $('menu li').stop().animate({opacity:1}, 300);
		$(this).find('ul').fadeOut(400);
    }
	$('li.menu-hover').hoverIntent({
		sensitivity: 2, // number = sensitivity threshold (must be 1 or higher)
		interval: 150,   // number = milliseconds of polling interval
		over: subMenuHover,  // function = onMouseOver callback (required)
		timeout: 100,   // number = milliseconds delay before onMouseOut function call
		out: subMenuStopHover    // function = onMouseOut callback (required)
	});
	$('textarea').each(function() {
    // Stores the default value for each textarea within each textarea
		$.data(this, 'default', this.value);
	}).focus(function() {
		// If the user has NOT edited the text clear it when they gain focus
		if (!$.data(this, 'edited')) {
			this.value = "";
		}
	}).change(function() {
		// Fires on blur if the content has been changed by the user
		$.data(this, 'edited', this.value != "");
	}).blur(function() {
		// Put the default text back in the textarea if its not been edited
		if (!$.data(this, 'edited')) {
			this.value = $.data(this, 'default');
		}
	});

	var logoLeft = $('#logo').css('left');
	$('#logo').hover(function () {
		$(this).animate({left: '0px'}, {queue: false, duration: 400, easing: 'easeOutQuad' });
	}, function() {
		$(this).animate({left: logoLeft}, {queue: false, duration: 400, easing: 'easeOutQuad' });
	});
	$("#jules-map a, #sketch a").fancybox({'padding':'0','overlayOpacity':'0.5','autoscale':'true','transitionIn':'elastic','transitionOut':'elastic','speedIn':500,'speedOut':500,'overlayColor':'#000'});
	$('#jules-map').hover(function () {
		$(this).animate({bottom: '40px'}, {queue: false, duration: 400, easing: 'easeOutQuad' });
	}, function() {
		$(this).animate({bottom: '-60px'}, {queue: false, duration: 400, easing: 'easeOutQuad' });
	});
	$('#sketch').hover(function () {
		$(this).animate({bottom: '40px'}, {queue: false, duration: 400, easing: 'easeOutQuad' });
	}, function() {
		$(this).animate({bottom: '-75px'}, {queue: false, duration: 400, easing: 'easeOutQuad' });
	});
	$('#adopt').hover(function () {
		$('#adopt-choices').fadeIn('400');
	}, function() {
		$('#adopt-choices').fadeOut('400');
	});
	$('.enter-gateways').hover(function () {
		$(this).find('ul').fadeIn('400');
	}, function() {
		$(this).find('ul').fadeOut('700');
	});
	var scrollRight = $('.sub-scroller').css('right');
	$('.sub-scroller').hover(function () {
		$(this).animate({right: '-35px'}, {queue: false, duration: 400, easing: 'easeOutQuad' });
	}, function() {
		$(this).animate({right: scrollRight}, {queue: false, duration: 400, easing: 'easeOutQuad' });
	});
	$('#trading-post-submenu').hover(function () {
		$(this).animate({right: '0'}, {queue: false, duration: 400, easing: 'easeOutQuad' });
	}, function() {
		$(this).animate({right: scrollRight}, {queue: false, duration: 400, easing: 'easeOutQuad' });
	});
	
	
	
	


});
