/**
 * @author Edo
 */
function onAfterLoad()
{
	$(document).ready(
	function()
	{
		$("#auf").click(
		function(event)
		{
			alert("As you can see, the link no longer took you to jquery.com");
			event.preventDefault();
		});
		//Calendar
		var today = new Date();
		GenerateCalendar(today.getMonth(), today.getFullYear(), 0);
		//Categories
		GenerateCategories(0);
		//Account
		AccountOnPageLoad();
		//Search
		SearchOnPageLoad();
		//News
		NewsOnPageLoad();
		//Analytics
		Analytics();		
		//Login
		CheckLogin();
	});
}
