/*------------------------------------------------------------------
Project:		White Lighthouse
Author:			Jay Contonio
Last change:	2008-10-14
-------------------------------------------------------------------*/

$(document).ready(function() {
	init();
})

// Gets called onload
function init() {
	$('#navigation li a:last').addClass('last');
	$('#header h1').click(function() {
		location.href = '/';
	})
}


