
$(function() {
	
	$('#home a[rel="colorbox"]').colorbox({
		href: 'performance-and-wellbeing.html #content',
		maxWidth: '800px',
		scrolling: false
	});
	
	$('#health-consultancy a[rel="colorbox"]').colorbox();
	
	$('#header .primary-nav li:last').addClass('last');
	
	//external links
	$('a[rel="external"]').click(function(){
		window.open(this.href);
		return false;
	});
	
});