$(document).ready(function(e) {

	// gallery clickable thumbs
	$('#gallery .thumb').click(function(e) {
		e.preventDefault();
		var theId = $(this).attr('id'); 
		$('#gallery #currentimage img').attr('src', 'images/' + theId + '-full.jpg');
	});


});



