SmartAjax_load('/smartajax/', function(){
	SmartAjax.isDebug = false;
	SmartAjax.setOptions({
		cache: false,
		reload: false,
		containers:
		[
			{selector: '#content'}
		],
		
		before: function()
		{
			$('#ajax-loader').fadeIn(200);
			
			SmartAjax.proceed();
		},
		success: function()
		{
			$('#siteContent').fadeOut(900, SmartAjax.proceed);
		},
		done: function()
		{
			$('#ajax-loader').fadeOut(800);
			$('#siteContent').fadeIn(600);
		}
	});
	
	SmartAjax.bind('header a');
}, true);
