// JavaScript Document
jQuery(function( $ ){
	//code for image swap
	$('#imgNav a').click(function(){
		//make all the elements in the project folder hidden
		$('#pageContent > ul > li').hide()
		
		$($(this).attr('href')).slideDown("normal");
		return false;
	});
});
