
/* ====================================================== INITIALISATION & BINDINGS ====================================================== */
/* ----------------------------------------------------------------------------------- 
	Initialise all default settings when a page loads for first time
	----------------------------------------------------------------------------------- */
function defaultInitialise()
{
	$(document).ready(function()
	{
		anchor.init();
		$("a[@href^='http']").attr('target','_blank');
	});	
}

/* ----------------------------------------------------------------------------------- 
	Anchor scolling
	----------------------------------------------------------------------------------- */
anchor = {
	init : function()  {
		$("a.anchorLink").click(function () {	
			elementClick = $(this).attr("href")
			destination = $(elementClick).offset().top;
			$("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination}, 1100 );
		  	return false;
		})
	}
}