$(document).ready(function(){
	
	// hide twitter feed
	$("#social-tab-2").hide();
	
	// facebook tab is clicked
	$("#tab1").click(function(){
		$("#social-tab-2").hide();
		$("#social-tab-1").show();
		$("#tabs").css("background-image", "url(http://www.myeverestchallenge.com/resources/site_images/facebook-tab.png)");
	});
	
	// twitter tab is clicked
	$("#tab2").click(function(){
		$("#social-tab-1").hide();
		$("#social-tab-2").show();
		$("#tabs").css("background-image", "url(http://www.myeverestchallenge.com/resources/site_images/twitter-tab.png)");
	});
	
	// display video
	$("#launch-video").click(function(){$("#video").show();});
	
	// Accordion
	$("#accordion").accordion({ header: "h3", autoHeight: false });


	// Gallery
	$('.gallery-zoom').click(function(){
		var newsrc = $(this).attr("src");
		$("#shade img").attr("src", newsrc);
		$("#shade").fadeIn(1000);
	});
	
	// Gallery
	$('.gallery-list img').click(function(){
		var newsrc = $(this).attr("src");
		$("#shade img").attr("src", newsrc);
		$("#shade").fadeIn(1000);
	});
	
	$("#overlay #close").click(function(){$("#shade").hide();});
	
	// Gallery
//	$('.gallery-zoom').fancyZoom({closeOnClick: true});
			
})
