$(function(){
	$('#thumbs a').click(function(){		
		$('#galleryMain').attr('src', $(this).attr('href'));
		$('#thumbs .current').removeClass('current');
		$(this).addClass('current');
		$('#colCenter .editor').html($(this).attr('title'));
		return false;
	});
	$('#thumbs a:eq(0)').click();
});






