// JavaScript Document
/*
$(document).ready(function() {
	//when the document has loaded
	$('a.thumbLink').click(function() {
		//re-bind the click of thumbnail links
		$('#mainPic').attr('src',this.href);
		$('#photoTitle').html( $(this).attr('title')  );
		this.blur();
		return false;
	});
});
*/