var RecaptchaOptions = {
		theme : 'blackglass'
	};



$(document).ready(function(){
	$.history.init(function(url) {
		
		url = url.replace('!/', '');
		
		if(url == ''){
			$('body').removeClass('body_bg_alt');
		}
		else{
			$('body').addClass('body_bg_alt');
		}
		
		if(url != 'kontakt'){
			$('.message_php').remove();
			$('.error_php').remove();
		}
		
		$.ajax({
			type: "GET",
			url: __base_url + "ajax.php",
			data: 'p='+url,
			async: false,
			dataType : "json",
			success: function(json) {
						$('#content-left').html(json.body);
					}
		});
		
		
	});
});

function toBigImage(url){
	$('#gallery-big').html('<img src="'+url+'">');
}

