var root = "http://annecsmith.com";

$(document).ready(
	function(){
		$("#aside .thumbs a").click(
		function() {
			var thumbInt = $(this).attr("id").substring(5);
			var newPath = root + "/" + $("#data"+thumbInt).text();
			$("#main img").attr("src", newPath);
		});
	}
);
