// JavaScript Document

 $(function() {
$(".image").click(function() {

$('.image').each(function(index) {
						  
  $(this).removeClass('thumbborder');
 
  });
  
  


$(this).addClass('thumbborder');
var image = $(this).attr("rel");
var destination = $(this).attr("name");
var title = $(this).attr("title");
$('#image').hide();
$('#image').fadeIn('slow');
$('#image').html('<a href="'+ destination +'"  class="thickbox" title="'+ title +'" ><img src="' + destination + '" title="'+title+'"/></a>');

loadThinkboxOnLoad();
return false;
	});
});
