/*------------------------------------------------------------------
Project:		New Project
Author:			<your-name>
Last change:	2008-10-22
-------------------------------------------------------------------*/

// Make sure the document is loaded
$(document).ready(function() {
	init();
})


// Gets called onload
function init() {
	// Add "last" as a class to the last list item in the navigation
	$("#navigation li a:last").addClass("last");
	// Add click events to the #support list-items
	$("#support li").each(function() {
		$(this).click(function() {
			location.href = this.firstChild.href;
		})
		$(this).css({
			cursor:'pointer'
		})
	});
}

