$(document).ready(function() {

	// Hide Tour Content Panels
	$('.tab-content:not(:first)').hide();
	

	// Tour Tabbed Panels
	$('#tabs a').click(function(){		
		var tour_index = $('#tabs a').index(this);
		
		if ( $('.tab-content').eq(tour_index).is(':visible') ){
			return false;
		}else{
			$('.tab-content').hide();
			$('.tab-content').eq(tour_index).show();
			
			$('#tabs a').removeClass('active');
			$(this).addClass('active');
		}
		
		return false;
	});
	
	
	// Tour Page Image Gallery
	$('.tab-content').each(function(){
		$(this).find('.thumbnails img').eq(0).animate({'opacity':0.5},100);
	});
	
		
	$('.thumbnails img').click(function(){
		var position = $(this).parents('.image_gallery').find('.thumbnails img').index(this);
		
		if ( $(this).parents('.image_gallery').find('.full_image img').eq(position).is(':visible') ){
			return false;
		}
		
		else{
			$(this).parents('.image_gallery').find('.thumbnails img').animate({'opacity':1.0},0);
			$(this).animate({'opacity':0.5},100);
			$(this).parents('.image_gallery').find('.full_image img').hide();
			$(this).parents('.image_gallery').find('.full_image img').eq(position).fadeIn(200);
			return false;
			
		}
	});
	
	
	
	// Image Gallery GA Event Tracking
	$('.thumbnail img').click(function(){
		var title = $(this).attr('title');		
		pageTracker._trackEvent('Home Page Gallery Image', 'Click', 'View Full Size', title);
	});
	
});
