$(document).ready(function(){
	$(".gallery-icon a").lightbox();
	$(".ngg-gallery-thumbnail a").lightbox();
	
	$('.article').hide();
	$('#remainingtestimonials').hide();
	
	$("#menu li a").click(function() {
		$("#menu li a.current").removeClass("current");
		$(this).addClass("current");			
	});
				
	$("#sendmessage").click(function() {
		$("#menu li a.current").removeClass("current");
		$("#contact-link").addClass("current");			
	});
	
	
	$(".showtestimonials").click(function(){ 
		// determines button source - whether arrow is pointed right or down.
		var myImg = $(this).children('img');
		var newSrc;
		if(myImg.attr("src") == 'http://www.fathomstudio.com/wp-content/themes/fathomstudio/images/more-closed.gif'){
			newSrc = "http://www.fathomstudio.com/wp-content/themes/fathomstudio/images/more-open.gif";
		}else{
			newSrc = "http://www.fathomstudio.com/wp-content/themes/fathomstudio/images/more-closed.gif";
		}
		$(this).children('img').attr("src", newSrc);
		
		// displays article
		//var div = $(this).next('.article');
		var div = $(this).parent().find("#remainingtestimonials");

		div.slideToggle("slow");
	});
	
	
	$(".showarticle").click(function(){ 
		// determines button source - whether arrow is pointed right or down.
		var myImg = $(this).children('img');
		var newSrc;
		if(myImg.attr("src") == 'http://www.fathomstudio.com/wp-content/themes/fathomstudio/images/more-closed.gif'){
			newSrc = "http://www.fathomstudio.com/wp-content/themes/fathomstudio/images/more-open.gif";
		}else{
			newSrc = "http://www.fathomstudio.com/wp-content/themes/fathomstudio/images/more-closed.gif";
		}
		$(this).children('img').attr("src", newSrc);
		
		// displays article
		//var div = $(this).next('.article');
		var div = $(this).parent().next();

		div.slideToggle("slow");
	}
	);
});