/* Common javascript functions */


/*
 * Superfish v1.4.8 - jQuery menu widget
 * Copyright (c) 2008 Joel Birch
 *
 * Dual licensed under the MIT and GPL licenses:
 * 	http://www.opensource.org/licenses/mit-license.php
 * 	http://www.gnu.org/licenses/gpl.html
 *
 * CHANGELOG: http://users.tpg.com.au/j_birch/plugins/superfish/changelog.txt
 */

jQuery.noConflict();
(function($){
	/* hoverIntent by Brian Cherne */
	$.fn.hoverIntent = function(f,g) {
		// default configuration options
		var cfg = {
			sensitivity: 7,
			interval: 100,
			timeout: 0
		};
		// override configuration options with user supplied object
		cfg = $.extend(cfg, g ? { over: f, out: g } : f );

		// instantiate variables
		// cX, cY = current X and Y position of mouse, updated by mousemove event
		// pX, pY = previous X and Y position of mouse, set by mouseover and polling interval
		var cX, cY, pX, pY;

		// A private function for getting mouse position
		var track = function(ev) {
			cX = ev.pageX;
			cY = ev.pageY;
		};

		// A private function for comparing current and previous mouse position
		var compare = function(ev,ob) {
			ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t);
			// compare mouse positions to see if they've crossed the threshold
			if ( ( Math.abs(pX-cX) + Math.abs(pY-cY) ) < cfg.sensitivity ) {
				$(ob).unbind("mousemove",track);
				// set hoverIntent state to true (so mouseOut can be called)
				ob.hoverIntent_s = 1;
				return cfg.over.apply(ob,[ev]);
			} else {
				// set previous coordinates for next time
				pX = cX; pY = cY;
				// use self-calling timeout, guarantees intervals are spaced out properly (avoids JavaScript timer bugs)
				ob.hoverIntent_t = setTimeout( function(){compare(ev, ob);} , cfg.interval );
			}
		};

		// A private function for delaying the mouseOut function
		var delay = function(ev,ob) {
			ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t);
			ob.hoverIntent_s = 0;
			return cfg.out.apply(ob,[ev]);
		};

		// A private function for handling mouse 'hovering'
		var handleHover = function(e) {
			// next three lines copied from jQuery.hover, ignore children onMouseOver/onMouseOut
			var p = (e.type == "mouseover" ? e.fromElement : e.toElement) || e.relatedTarget;
			while ( p && p != this ) { try { p = p.parentNode; } catch(e) { p = this; } }
			if ( p == this ) { return false; }

			// copy objects to be passed into t (required for event object to be passed in IE)
			var ev = jQuery.extend({},e);
			var ob = this;

			// cancel hoverIntent timer if it exists
			if (ob.hoverIntent_t) { ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t); }

			// else e.type == "onmouseover"
			if (e.type == "mouseover") {
				// set "previous" X and Y position based on initial entry point
				pX = ev.pageX; pY = ev.pageY;
				// update "current" X and Y position based on mousemove
				$(ob).bind("mousemove",track);
				// start polling interval (self-calling timeout) to compare mouse coordinates over time
				if (ob.hoverIntent_s != 1) { ob.hoverIntent_t = setTimeout( function(){compare(ev,ob);} , cfg.interval );}

			// else e.type == "onmouseout"
			} else {
				// unbind expensive mousemove event
				$(ob).unbind("mousemove",track);
				// if hoverIntent state is true, then call the mouseOut function after the specified delay
				if (ob.hoverIntent_s == 1) { ob.hoverIntent_t = setTimeout( function(){delay(ev,ob);} , cfg.timeout );}
			}
		};

		// bind the function to the two event listeners
		return this.mouseover(handleHover).mouseout(handleHover);
	};
	$.fn.superfish = function(op){

		var sf = $.fn.superfish,
			c = sf.c,
			$arrow = $(['<span class="',c.arrowClass,'"> &#187;</span>'].join('')),
			over = function(){
				var $$ = $(this), menu = getMenu($$);
				clearTimeout(menu.sfTimer);
				$$.showSuperfishUl().siblings().hideSuperfishUl();
			},
			out = function(){
				var $$ = $(this), menu = getMenu($$), o = sf.op;
				clearTimeout(menu.sfTimer);
				menu.sfTimer=setTimeout(function(){
					o.retainPath=($.inArray($$[0],o.$path)>-1);
					$$.hideSuperfishUl();
					if (o.$path.length && $$.parents(['li.',o.hoverClass].join('')).length<1){over.call(o.$path);}
				},o.delay);	
			},
			getMenu = function($menu){
				var menu = $menu.parents(['ul.',c.menuClass,':first'].join(''))[0];
				sf.op = sf.o[menu.serial];
				return menu;
			},
			addArrow = function($a){ $a.addClass(c.anchorClass).append($arrow.clone()); };
			
		return this.each(function() {
			var s = this.serial = sf.o.length;
			var o = $.extend({},sf.defaults,op);
			o.$path = $('li.'+o.pathClass,this).slice(0,o.pathLevels).each(function(){
				$(this).addClass([o.hoverClass,c.bcClass].join(' '))
					.filter('li:has(ul)').removeClass(o.pathClass);
			});
			sf.o[s] = sf.op = o;
			
			$('li:has(ul)',this)[($.fn.hoverIntent && !o.disableHI) ? 'hoverIntent' : 'hover'](over,out).each(function() {
				if (o.autoArrows) addArrow( $('>a:first-child',this) );
			})
			.not('.'+c.bcClass)
				.hideSuperfishUl();
			
			var $a = $('a',this);
			$a.each(function(i){
				var $li = $a.eq(i).parents('li');
				$a.eq(i).focus(function(){over.call($li);}).blur(function(){out.call($li);});
			});
			o.onInit.call(this);
			
		}).each(function() {
			var menuClasses = [c.menuClass];
			if (sf.op.dropShadows  && !($.browser.msie && $.browser.version < 7)) menuClasses.push(c.shadowClass);
			$(this).addClass(menuClasses.join(' '));
		});
	};

	var sf = $.fn.superfish;
	sf.o = [];
	sf.op = {};
	sf.IE7fix = function(){
		var o = sf.op;
		if ($.browser.msie && $.browser.version > 6 && o.dropShadows && o.animation.opacity!=undefined)
			this.toggleClass(sf.c.shadowClass+'-off');
		};
	sf.c = {
		bcClass     : 'sf-breadcrumb',
		menuClass   : 'sf-js-enabled',
		anchorClass : 'sf-with-ul',
		arrowClass  : 'sf-sub-indicator',
		shadowClass : 'sf-shadow'
	};
	sf.defaults = {
		hoverClass	: 'sfHover',
		pathClass	: 'overideThisToUse',
		pathLevels	: 1,
		delay		: 800,
		animation	: {opacity:'show'},
		speed		: 'normal',
		autoArrows	: true,
		dropShadows : true,
		disableHI	: false,		// true disables hoverIntent detection
		onInit		: function(){}, // callback functions
		onBeforeShow: function(){},
		onShow		: function(){},
		onHide		: function(){}
	};
	$.fn.extend({
		hideSuperfishUl : function(){
			var o = sf.op,
				not = (o.retainPath===true) ? o.$path : '';
			o.retainPath = false;
			var $ul = $(['li.',o.hoverClass].join(''),this).add(this).not(not).removeClass(o.hoverClass)
					.find('>ul').hide().css('visibility','hidden');
			o.onHide.call($ul);
			return this;
		},
		showSuperfishUl : function(){
			var o = sf.op,
				sh = sf.c.shadowClass+'-off',
				$ul = this.addClass(o.hoverClass)
					.find('>ul:hidden').css('visibility','visible');
			sf.IE7fix.call($ul);
			o.onBeforeShow.call($ul);
			$ul.animate(o.animation,o.speed,function(){ sf.IE7fix.call($ul); o.onShow.call($ul); });
			return this;
		}
	});

})(jQuery);



// When the page is ready
jQuery.noConflict();
(function($) {
 $(document).ready(function(){
  
// handle dropdown menus
$('li.navmenu-item1').each(function(){
  var width = $(this).width();
  var id = $(this).attr('id');
  $('li#'+id + ' ul.submenu2 li.navmenu-item3').each(function(){
    if(width>150)
      $(this).width(width);
  });
});

$('ul.submenu2').each(function(){
  var width = $(this).parentsUntil('li.navmenu-item1').width();
  $(this).css('left',width);
});

$('#menu ul#nav').superfish(
  { 
		delay: 800,
    speed: 'fast',
    autoArrows:  false,                          
    dropShadows: false                           
  }
);

//right sidebar switcher
$('a.sidebar_button').click(function(){
  $('a.active_button').removeClass('active_button');
  $(this).addClass('active_button');
  var id = $(this).attr('rel');
  $('div.active_sidebar').removeClass('active_sidebar').addClass('inactive_sidebar');
  $('div#'+id).addClass('active_sidebar').removeClass('inactive_sidebar');
  return false
});


// collapse.js
   // add global controls
   $('.global-collapsible-controls').prepend("<a class='global_collapse_hide' href=''><span>Hide All</span></a> <a class='global_collapse_show' href=''><span>Show All</span></a>");

   // hide all collapse_hide_area and add toggle button for each
   $('.collapsible .collapse_hide_area').hide();
   $('.collapsible .collapse_show_area').prepend("<div class='wrapper-toggle'><a class='collapse_toggle' href=''><span>toggle</span></a></div>");
   $('.collapsible .collapse_show_button').prepend("<a class='collapse_toggle' href=''><span>toggle</span></a>");

  // show collapse_hide_area that have show class and sync button
   $('.collapsible .collapse_hide_area.show').show();
   $('.collapsible .collapse_hide_area.show').parents(".collapsible").find("a.collapse_toggle").toggleClass('collapse_open');

  // handle click events
   $(".collapsible .collapse_toggle").click(function(event){
     $(this).parents(".collapsible").find("a.collapse_toggle").toggleClass('collapse_open');
     $(this).parents(".collapsible").children(".collapse_hide_area").toggle();
     // only track open events 
     if ($(this).parents(".collapsible").find("a.collapse_toggle").hasClass('collapse_open')) {
       report_header = $(this).parents(".collapsible").find("h2.report_header").text();
       try {
         _gaq.push(['_trackEvent',  'Snow Report', 'Dropdown', report_header]);
       } catch (e) {
        // hmm
       }
     }
     
     // Stop the link click from doing its normal thing
     return false;
   });

  // collapse global
   $(".global_collapse_hide").click(function(event){
     $("a.collapse_toggle").removeClass('collapse_open');
     $(".collapsible .collapse_hide_area").hide();
     
     // Stop the link click from doing its normal thing
     return false;
   });
   $(".global_collapse_show").click(function(event){
     $(".collapsible .collapse_toggle").each(function(e){
      $(this).addClass('collapse_open');
      $(this).parents(".collapsible").children(".collapse_hide_area").show();
     });
     
     // Stop the link click from doing its normal thing
     return false;
   });


  // handle play/pause control
  /* delete? 
  $("div#hp-page ul#large_promo-nav").after(" <div id='play_pause-controls'> <span id='pause-button'><em>pause</em></span> </div> ");
  $("div#play_pause-controls span").toggle(function() {
    $(this).attr('id', 'play-button').html('<em>play</em>');
    $("div#hp-page #large_promo-slides").cycle('pause');
  },
  function() {
    $(this).attr('id', 'pause-button').html('<em>pause</em>');
    $("div#hp-page #large_promo-slides").cycle('resume');
  });
  */

  // homepage scrolling banner
  function get_width_of_banner_text() {
    $("#alert-banner span").clone().appendTo("body").addClass("no_wrap");
    var w = $("body > span.no_wrap").width();
    $("body > span.no_wrap").remove();
    return w;
  }
  var w = get_width_of_banner_text();

  var max_w = $("#alert-banner").width();
  var rate = 13.26;
  if ( (w > max_w) ) {
    var time = w*rate;
    $("#alert-banner span").clone().appendTo("#alert-banner span");
    function scroll() {
      $("#alert-banner > span").animate( 
        {left:"-"+w+"px"}, time, 'linear', function() {
          $(this).css('left', '1em');
          scroll();
          });
    }
    scroll();
  } else {
    pad = max_w-w;
    var time = (pad+w)*rate;
    function bounce() {
      $("#alert-banner > span").animate( 
        {paddingLeft:pad+"px", paddingRight:pad+"0px"}, time, 'swing').animate({paddingRight:pad+"px", paddingLeft:"0px"}, time, 'swing', function() {
            bounce();
          });
    }
    bounce();
  }

  // pmtour collapse buttons
  $("div.tour_details-copy").hide();
  $("div#pmtour-page span.collapse-icon").addClass("collapse_hide");
  $("h2.tour_details-title").toggle(function(e){
    $(this).find("span.collapse-icon").removeClass("collapse_hide").addClass("collapse_show");
    $(this).next("div.tour_details-copy").show();
  },function(e){
    $(this).find("span.collapse-icon").removeClass("collapse_show").addClass("collapse_hide");
    $(this).next("div.tour_details-copy").hide();
  });



  // input text from input titles ( used on search )
  function title_to_value() {
    input_field = $(this);
    if (input_field.attr("value") == input_field.attr("title")) {
      input_field.attr("value", '');
    }
  }
  function reset_to_value() {
    input_field = $(this);
    if (!input_field.attr("value")) {
      input_field.attr("value", input_field.attr("title"));
    }
  }
  $.fn.placeholder = function() {
    return this.each(function() {
      var input_field = $(this);

      // empty the field on click if it has default value
      input_field.bind("focus", title_to_value);

      // reset the field to default value on blur if it is empty
      input_field.bind("blur", reset_to_value);

      // empty the field if the same value as title before submitting
      $("form:has(input[name='"+input_field.attr("name")+"'])").bind('submit', title_to_value);

      // reset the field to the title
      $("form:has(input[name='"+input_field.attr("name")+"'])").bind('reset', function() {
        input_field.attr("value", input_field.attr("title"));
        return false;
      });

      input_field.attr("value", input_field.attr("title"));
    });
  };
  $(".js_placeholder").placeholder();


  // override cycle plugin hiding
  // this is done for better video support in cycle
  $.fn.cycle.videoCommonReset = function(curr,next,opts,w,h,rev) {
    //$(opts.elements).not(curr).hide();
    $(opts.elements).not(curr).css('overflow', 'hidden');
    $(opts.elements).not(curr).css('height', '0px');

    opts.cssBefore.height = 'auto';

    opts.cssBefore.opacity = 1;
    opts.cssBefore.display = 'block';
    opts.cssBefore.position = 'static';
    opts.cssBefore.left = '0px';

    if (w !== false && next.cycleW > 0)
      opts.cssBefore.width = next.cycleW;
    if (h !== false && next.cycleH > 0)
      opts.cssBefore.height = next.cycleH;

    opts.cssAfter = opts.cssAfter || {};
    //opts.cssAfter.display = 'none';
    opts.cssAfter.overflow = 'hidden';
    opts.cssAfter.height = '0';
    $(curr).css('zIndex',opts.slideCount + (rev === true ? 1 : 0));
    $(next).css('zIndex',opts.slideCount + (rev === true ? 0 : 1));
  };
  $.fn.cycle.transitions.fadeVideo = function($cont, $slides, opts) {
    $slides.not(':eq('+opts.currSlide+')').css('opacity',0);
    opts.before.push(function(curr,next,opts) {
      $.fn.cycle.videoCommonReset(curr,next,opts);
      opts.cssBefore.opacity = 0;
    });
    opts.animIn	   = { opacity: 1 };
    opts.animOut   = { opacity: 0 };
    opts.cssBefore = { top: 0, left: 0 };
  };

  // content_header cycle
  if ($("#content_media-block .content_media-slide").length >= 2) {
    $("#content_header .header_images").show();
    var content_media_block = $("#content_media-block");
    var initSlide = 1;
    function load_slide(currSlide, nextSlide, opts, forward) {
      var slide = initSlide ? 0 : opts.nextSlide;
      initSlide = 0;
      var fullsize_link = $(nextSlide).find(".fullsize");
      if (fullsize_link.hasClass('placeholder')) {
        img = new Image();
        img.src = fullsize_link.attr('href');
        fullsize_link.after(img);
        fullsize_link.remove();
      }
      /*
      if ($(".content_media-slide").eq(slide).find('.botrplayer').length == 0) {
        $("#content_header").addClass('no-video-showing');
      } else {
        $("#content_header").removeClass('no-video-showing');
      }
      */
      $(".content_media-slide").removeClass('active');
      $(".content_media-slide").eq(slide).addClass('active');

      $(".content_media-slide .botrplayer").each(function(e){
        var vid_id = $(this).attr('id');
        if (typeof jwplayer != undefined) {
          var player_id = window[vid_id.substring(0, vid_id.lastIndexOf("_"))].id;
          var player = jwplayer.api.playerById(player_id);
          if (player_id != undefined && typeof player != undefined) {
            if (player.getState() == 'PLAYING') {
              player.pause(true);
            }
          }
        }
      });
        
    }
    content_media_block.cycle({
      fx: 'fadeVideo',
      timeout: 0,
      pager: '#content_title .header_images',
      pagerAnchorBuilder: function(idx, slide) {
        // return selector string for existing anchor
        return '#content_title .header_images img:eq(' + idx + ')';
      },
      before: load_slide
    });
  }
  // play/pause video when vingette is clicked on
  $("#content_header .vingette").bind('click', function(e){
    var activeSlide = $(".content_media-slide.active");
    var video_src = activeSlide.find('.video-src').text();
    var botrplayer = activeSlide.find('.botrplayer');
    if (video_src) {
      activeSlide.find('.video-src').remove();
      var vid_id = video_src.substring(video_src.lastIndexOf("/")+1, video_src.lastIndexOf("."));
      vid_id = vid_id.replace("-", "_");
      vid_id = "botr_"+vid_id+"_div";
      activeSlide.find("img").after("<div class='botrplayer' id='"+vid_id+"'></div>");
      $.getScript(video_src, function(e){
        activeSlide.find("img").remove();
        if (typeof jwplayer != undefined) {
          var player_id = window[vid_id.substring(0, vid_id.lastIndexOf("_"))].id;
          var player = jwplayer.api.playerById(player_id);
          if (player_id != undefined && typeof player != undefined) {
            var state = player.getState();
            var check_if_videos_ready = function(){
              var state = player.getState();
              if ((state != undefined) && (state != null)) {
                if (state == 'IDLE') {
                  player.play(true);
                }
                player.onComplete(function(){
                  //
                });

              } else {
                // check again
                var f = setTimeout(check_if_videos_ready, 200);
                //$("body").prepend(".");
              }
            };
            var f = setTimeout(check_if_videos_ready, 200);
          } else {
            //console.log("vid_id", vid_id, "player_id", player_id);
          }
        } else {
          //console.log('no jwplayer');
        }
      });
    } else if (botrplayer.length) { // toggle between play and pause
      var vid_id = botrplayer.attr('id');
      if (typeof jwplayer != undefined) {
        var player_id = window[vid_id.substring(0, vid_id.lastIndexOf("_"))].id;
        var player = jwplayer.api.playerById(player_id);
        if (player_id != undefined && typeof player != undefined) {
          if (player.getState() == 'PLAYING') {
            player.pause(true);
          } else {
            player.play(true);
          }
        }
      }
    }
  });

 });

 $(window).load(function(){
   // Remove functionality of document.write after the page has been loaded.
   // The embedded video script uses document.write to add the botrplayer div.
   // This causes an issue with Safari when loading via ajax.
   document.write = function(d){};
 });

})(jQuery);

