$(document).ready(function() {
	$("div.gallery a, a.fancybox").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	false
	});
	
	$('div#members').find('img.member.inactive').each(function() {
		var src = $(this).attr('src');
		var srcInactive = $(this).attr('src');
		$(this).hover(
			function() {
				$(this).attr('src', src.replace('/sw/', '/'));
				$('h2#member-name').text($(this).attr('title'));
			},
			function() {
				$(this).attr('src', src);
				$('h2#member-name').text('');
			}
		);
	});
	
	$('h3.new-entry span').click(function() {
		$('form#guestbook').slideToggle();
	});
});
