function resetNav() {
	HideContent('top_nava');
	HideContent('top_navb');
	HideContent('top_nav1a');
	HideContent('top_nav1b');
	HideContent('top_nav2a');
	HideContent('top_nav2b');
	HideContent('top_nav_indent_a');
	HideContent('top_nav_indent_b');
	HideContent('bottom_nav_a');
	HideContent('bottom_nav_b');
};

function resetContent() { // add all content div's that will be used
	HideContent('summit_project_photos');
	HideContent('summit_silver-gold');
	HideContent('summit_project_photos');
	HideContent('ortiz_gold');
	HideContent('black_canyon_mica');
	HideContent('planet_micaceous_iron_oxide');
};

function resetAll() {
	resetNav();
	resetContent();
};

function showNav() {
	ShowContent('top_nava');
	ShowContent('top_nav1a');
	ShowContent('top_nav2a');
	ShowContent('top_nav_indent_a');
	ShowContent('bottom_nav_a');
}

function hideGallery() {
	HideContent('gallery_2');
	HideContent('nav_gal_1');
	HideContent('gallery_pages_icon_back');
}

function showPageContent() { // show all nav
	/*** - NAV ***/
	showNav();
	hideGallery();
	
	if (document.title == "Santa Fe Gold - Projects") {
		
		/*** - CONTENT - ***/
		HideContent('top_nava');
		ShowContent('top_navb');
		ShowContent('summit_silver-gold');
		swapImage(1);
		
	}
	
	if (document.title == "Santa Fe Gold - Projects (Latest Photos from Summit)") {
		
		/*** - CONTENT - ***/
		HideContent('top_nav_indent_a');
		ShowContent('top_nav_indent_b');
		ShowContent('summit_project_photos');
		swapImage(2);
		
	}
	
	if (document.title == "Santa Fe Gold - Projects (Ortiz Gold)") {
		
		/*** - CONTENT - ***/
		HideContent('top_nav1a');
		ShowContent('top_nav1b');
		ShowContent('ortiz_gold');
		swapImage(3);
		
	}
	
	if (document.title == "Santa Fe Gold - Projects (Black Canyon Mica)") {
		
		/*** - CONTENT - ***/
		HideContent('top_nav2a');
		ShowContent('top_nav2b');
		ShowContent('black_canyon_mica');
		swapImage(4);
		
	}
	
}

$(document).ready(function(){
	/*** - RESET - ***/
		resetAll();
		showPageContent();
	
	$("#03_summit_silver_gold").click(function(){
		/*** - RESET - ***/
			resetAll();
			showNav();
		
		/*** - NAV - ***/
			HideContent('top_nava');
			ShowContent('top_navb');
			HideContent('top_nav_indent_b');
			ShowContent('top_nav_indent_a');
		
		/*** - CONTENT - ***/
			ShowContent('summit_silver-gold');
			swapImage(1);
			
		/*** - FLASH - ***/
			loadNavPic('img_03a');
		
		/*** - GOOGLE ANALYTICS - ***/
			pageTracker._trackEvent('sub_nav - 03_projects', 'view - content', 'summit_silver-gold');
		
	});
	
	$("#03_latest_photos_from_summit").click(function(){
		/*** - RESET - ***/
			resetAll();
			showNav();
		
		/*** - NAV - ***/
			HideContent('top_nav_indent_a');
			ShowContent('top_nav_indent_b');
		
		/*** - CONTENT - ***/
			ShowContent('summit_project_photos');
			swapImage(2);
			
		/*** - FLASH - ***/
			loadNavPic('img_03b');
		
		/*** - GOOGLE ANALYTICS - ***/
			pageTracker._trackEvent('sub_nav - 03_projects', 'view - content', 'latest_photos_from_summit');
		
	});
	
	$("#pg_2").click(function(){
		HideContent('gallery_pages_icon_forward');
		ShowContent('gallery_pages_icon_back');
		HideContent('gallery_1');
		ShowContent('gallery_2');
		HideContent('nav_gal_2');
		ShowContent('nav_gal_1');
	});
	$("#pg_1").click(function(){
		HideContent('gallery_pages_icon_back');
		ShowContent('gallery_pages_icon_forward');
		HideContent('gallery_2');
		ShowContent('gallery_1');
		HideContent('nav_gal_1');
		ShowContent('nav_gal_2');
	});
	
	$("#gallery_pages_icon_forward").click(function(){
		HideContent('gallery_pages_icon_forward');
		ShowContent('gallery_pages_icon_back');
		HideContent('gallery_1');
		ShowContent('gallery_2');
		HideContent('nav_gal_2');
		ShowContent('nav_gal_1');
	});
	$("#gallery_pages_icon_back").click(function(){
		HideContent('gallery_pages_icon_back');
		ShowContent('gallery_pages_icon_forward');
		HideContent('gallery_2');
		ShowContent('gallery_1');
		HideContent('nav_gal_1');
		ShowContent('nav_gal_2');
	});
	
	
	$("#03_ortiz_gold").click(function(){
		/*** - RESET - ***/
			resetAll();
			showNav();
		
		/*** - NAV - ***/
			HideContent('top_nav1a');
			ShowContent('top_nav1b');
		
		/*** - CONTENT - ***/
			ShowContent('ortiz_gold');
			swapImage(3);
			
		/*** - FLASH - ***/
			loadNavPic('img_03c');
		
		/*** - GOOGLE ANALYTICS - ***/
			pageTracker._trackEvent('sub_nav - 03_projects', 'view - content', 'ortiz_gold');
		
	});
	$("#03_black_canyon_mica").click(function(){
		/*** - RESET - ***/
			resetAll();
			showNav();
		
		/*** - NAV - ***/
			HideContent('top_nav2a');
			ShowContent('top_nav2b');
		
		/*** - CONTENT - ***/
			ShowContent('black_canyon_mica');
			swapImage(4);
			
		/*** - FLASH - ***/
			loadNavPic('img_03d');
		
		/*** - GOOGLE ANALYTICS - ***/
			pageTracker._trackEvent('sub_nav - 03_projects', 'view - content', 'black_canyon_mica');
		
	});
	$("#03_planet_micaceous_iron_oxide").click(function(){
		/*** - RESET - ***/
			resetAll();
			showNav();
		
		/*** - NAV - ***/
			HideContent('bottom_nav_a');
			ShowContent('bottom_nav_b');
		
		/*** - CONTENT - ***/
			ShowContent('planet_micaceous_iron_oxide');
			swapImage(5);
			
		/*** - FLASH - ***/
			loadNavPic('img_03e');
		
		/*** - GOOGLE ANALYTICS - ***/
			pageTracker._trackEvent('sub_nav - 03_projects', 'view - content', 'planet_micaceous_iron_oxide');
		
	});
		
});

