/* Scripts - Author: JTP - 09/12/2010 */

$(document).ready(function()
{ 
	// Opens all external links in new windows        
	$(function(){ $('a[rel=external]').click(function(e){ open(this.href); e.preventDefault(); }); }); 

	// Cycle photobox hero slides
	//$('#photobox').preloadCycle({pause: 1, timeout: 4000, speed: 1000});
	$('#photobox figure:first, #photobox img:first').show();
	$('#photobox').cycle({pause: 1, timeout: 4000, speed: 1000});
	
   	// Fancybox - YouTube Videos
    $('.video-popup').fancybox({'frameWidth': 480, 'frameHeight': 385});
        
	// Fancybox - Flickr Gallery
    $('.flickr-gallery a').fancybox();
	
	// Setup footer form field default
	$('#mc_mv_EMAIL').setupFormDefaultToggle({defaultText: 'Enter Email Address', blurColor: '#bfbfbf', focusColor: '#404040'});
	
	// GA event tracking code
	$('.expedition-green a').click(function(){ _gaq.push(['_trackEvent', 'CTA Home', 'EverestBC', 'Position 1']); });
	$('.expedition-blue a').click(function() { _gaq.push(['_trackEvent', 'CTA Home', 'Island Peak', 'Position 2']); });
	$('.expedition-orange a').click(function() { _gaq.push(['_trackEvent', 'CTA Home', 'Arctic', 'Position 3']); });
	
	// Style child nav better
	$('#child-navigation li:first').addClass('first');
	$('#child-navigation li:last').addClass('last');
	
	// TEMP REMOVE FOR LIVE
	$('#signposts figure:last').addClass('last');
});
