/* Change links background on click */
$(document).ready(function() {
	
	$("#gallery nav li a").click(function() {
		
		$(this).addClass("visited");
		
	});
	
});	

/* Display about/contact */
$(document).ready(function() {
 
 	$('section#links').css({display: 'none'});
	
	$('.container header').hover(function(e) {
		
		$('section#links').animate({opacity: 'toggle'}, 400);
 
	});
	
});

/* about/contact tabs */
$(document).ready(function() {

	//When page loads...
		$("section.links").hide(); //Hide all content

	//About
		$("li.about a").click(function() {

			$("section.links").hide(); //Hide all tab content

			$("section#about").fadeIn(); 
			return false;
		});
		
	//Contact
		$("li.contact a").click(function() {

			$("section.links").hide(); //Hide all tab content

			$("section#contact").fadeIn(); 
			return false;
		});
		
	//h1 closes both
		$("h1").click(function() {

			$("section.links").hide(); //Hide all tab content

			return false;
		});

});
