// display a clicked thumbnail as a main image
$(document).ready(function() {
	$('.cycle .thumb a').click(function() {
		
		// set main image
		src = ($(this).find('img').attr('src').replace('small', 'med'));
		$('.gallery-img a').each(function() {
			$(this).removeClass('current');
		});
		$('.gallery-img a img[src="' + src + '"]').parent().addClass('current');
	});
});


// display a clicked thumbnail as a main image
//$(document).ready(function() {
//	$('.cycle .thumb a').click(function() {
//		
//		 set main image path
//		src = ($(this).find('img').attr('src'));
//		$('.gallery-img img').attr('src', src.replace('small', 'med'));
//		
//		 set main image link (for lightbox)
//		$('.gallery-img a').attr('href', src.replace('small', 'large'));
//		
//		 set title and tooltip
//		alt = ($(this).find('img').attr('alt'));
//		$('.gallery-img a').attr('title', alt);
//		$('.gallery-img .tooltip').text(alt);
//		
//		return false;
//	});
//});
