$(document).ready(function() {
	// lightbox effect
	$("a[rev^='lightbox']").slimbox({}, null, function(el) {
		return (this == el) || ((this.rev.length > 8) && (this.rev == el.rev));
	});
	
	// gallery
	$('#thumbnails a').click(function() {
		// change main image
		$('#main-image img').attr('src', $(this).attr('href'));
		
		// update alt text
		$('#main-image img').attr('alt', $(this).find('img').attr('alt'));
		
		// remove active status
		$('#thumbnails a').removeClass('active');
		
		// set thumbnail to active
		$(this).addClass('active');
		
		// disable link
		return false;
	});
});