$(document).ready(function() {
    $('#colophon label').click(function(){
		var o = $('input', this).val();
	});
	$('.members').equaliser();
	$('.listJobs tbody tr').hover(function(){
		$(this).addClass('hover');
	}, function(){
		$(this).removeClass('hover');
	}).click(function(){
		window.open($('a', this).attr('href'));
		return false;
	});
	$('a[rel=email]').each(function(){
		var ea = $(this).text();
		var ea = ea.replace(/#/,'@');
		var ea = ea.replace(/\*/g,'.');
		$(this).text(ea).attr('href','mailto:'+ea)
	});
	$('.listSections dd').not('#listShop dd').each(function(){
		$(this).append('<a href="#content" class="navTop">Back to top</a>');
	});
	$('#menu > li').each(function(){
		$(this).hover(function(){
			$(this).addClass('hover')
		},function(){
			$(this).removeClass('hover')
		});
	});
	$('a.lightbox').fancybox();
});