
	
	$('a.ajax').live('click', function(event) {
		$.blockUI({ message: '<img src="img/ajax-loader.gif"/>', css: { backgroundColor: '#000', border: 'none', width:'24px', height: '24px', left: ($(window).width() - 100) /2 + 'px', top:  '35px' },overlayCSS: { backgroundColor: 'none' } });
		
		
		
		$.getJSON($(this).attr('href')+'?ajax', function(data) {
			$.unblockUI();

			window.History.pushState(null, doc_title_main+doc_title_sep+data.headline, data.ident);
			event.preventDefault();			

			$('.content article').fadeOut(200, function() {
							$('.content article').html('<h1>'+data.headline+'</h1>'+data.content);
							$('body').removeClass().addClass(data.bodyclass);
							$('.content article').fadeIn();
							$("a[rel^='lightbox']").slimbox({ counterText: 'Bild {x} von {y}' });
							$( ".datepicker" ).datepicker($.datepicker.regional['de']);
			});
			//$('#superbgimage').fadeOut(100, function() {
				//$('<img />')
				//	.attr('src', data.bgimage)
				//	.load(function(){
				//		$('#superbgimage').html( $(this) );
				//		$('#superbgimage').fadeIn();
		
						
			

				//});
	

	
			//});
			
			$('#mainnav a, #footernav a').removeClass('active');
			$('#mainnav a[title='+data.headline+'], #footernav a[title='+data.headline+']').addClass('active');
			
			
			
		});
	
		return false;
		
	});	








