// JavaScript Document

$(document).ready(function(){
						   
		//When page loads...
		$(".slide").hide(); //Hide all content
		$(".info").hide();
		$(".slide#pathcontent").show(); //Show first tab content
		$(".info#pathinfo").show();
	
		//On Click Event
		$(".btn").click(function(event) {
			
			event.preventDefault();
	
			$(".info").hide();
			$(".slide").hide(); //Hide all tab content
	
			var active = $(this).attr("id"); //Find the href attribute value to identify the active tab + content
			
	
			$("#" + active +"content").fadeIn(); //Fade in the active ID content
			$(".info").hide();
			$("#" + active +"info").show("slow"); 
			return false;
		});

		
		


	});