$(document).ready(function() {
		$('#thumbnails a').first().addClass("sel");
						   
		$('#thumbnails a').click(function(e) {
						
			$('#thumbnails a.sel').removeClass("sel");
			$(this).addClass("sel");
			var imagePath = $(this).attr("href");
			var imageInfo = $(this).attr("name");
			var imageTitle = $(this).attr("title");
			$('div.image img').attr({ src: imagePath, alt: imageInfo, title: imageTitle});
			$('#work-info > h2').html(imageTitle);
			$('#work-info > p').html(imageInfo);
			e.preventDefault();

		});
});

