$(document).ready(function()
{

})


function loadContent(url, destination)
{
	$.ajax({
		url: url + '?a',
		cache: true,
		success: function(result)
		{
			$('#' + destination).append(result);
			return true;
		}
	});
}


function heading_position(scroll_pos)
{
	if(scroll_pos > 160 && hintNav != true)
	{
		$('#shownav').slideDown();
	}
	else
	{
		$('#shownav').slideUp();
	}
}
