$(document).ready(function(){
	
	setTimeout("fadeIt()",1000);

	$('a.togglable').click(function() {
		id = $(this).attr("rel");
		$(id).slideToggle();
	});

});

function fadeIt()
{
	$(".bildeinleitung").fadeIn(1000);
}

function viewDetail(link)
{
	window.location.href=link;
}

var RecaptchaOptions = {
	theme : 'custom',
	lang: 'de',
	tabindex : 100,
	custom_theme_widget: 'recaptcha_widget'
};


