  			$(document).ready(function(){ 
  			
	  			$("#project-nav a").attr('href','#');	
				$(".project-link").click(function(){
				
				$(".project-images").html("<div id='large-images'></div>");
				$("#project-nav span").removeClass("current");
					
				fileName = $(this).parent().find(".filename").val();
				title = $(this).parent().find(".projectTitle").val();
				details = $(this).parent().find(".projectDetails").val();

				altText = $(this).parent().find(".altText").val();
				
				if (this.id == altText) {
					//alert(this.id);
					$("#"+this.id).addClass("current");
				}

				$("#project-title").html(title);
				$("#project-details").html(details);
				$(".project-image").attr("src",fileName);
				$(".project-image").attr("alt",altText);
					
		});

	});
