$(document).ready(function() {
	load_materials(window.location.href, 'places');
	load_materials(window.location.href, 'tours');
	load_materials(window.location.href, 'hotels');
});

function load_materials(path, mattype)
{
	$('#'+mattype+' div.loader').show();
	$('#'+mattype+' div.data').hide();
			
	$('#'+mattype+' div.data').load(path, 
		{ 
			type: mattype, 
			noid: global_id , 
			tags: global_tags 
		},
		function()
		{	
			if($('#'+mattype+' i.ar-scroll a').size() != 2)
			{
				$('#'+mattype).hide();
				return true;
			}
			
			$('#'+mattype+' i.ar-scroll a').click(function() {
				if($(this).attr('href') == "")
				{
					load_materials(window.location.href, mattype);
				}
				else
				{
					load_materials($(this).attr('href'), mattype);
				}
				return false;
			});
			
			$('#'+mattype+' div.loader').hide();
			$('#'+mattype+' div.data').show();
		}
	);
}