$(document).ready(function() {
	
	$('#logo img').css({
		cursor: 'pointer'
	});
	
	$('#logo img').click(function() {
		window.location.href = '/';
	});
	
	$('#nav a').click(function(){
		$('#nav a').removeClass('current');
		$(this).addClass('current');
	});
	
	$('a:has(img)').css('border', '0');
	
});
