Shadowbox.init({
    language:   "de-DE",
    players: ["img","swf"],
    flashParams: {bgcolor:'#ffffff',base:'http://www.rappe-giesecke.de/media/flash/'}
});


$(document).ready(function()
{

	$('a').focus(function()
	{
		$(this).blur();
	});

	$('div.extendLink a').click(function()
	{
		sFoo = $(this).attr('href');
		aFoo = sFoo.split('chapter=');
		sTarget = aFoo[1];

		if ($('div#extendedBox'+sTarget).is(':visible')) {
			$('div#extendedBox'+sTarget).fadeOut('fast');
			$('div#extendLink'+sTarget+' a').html('mehr lesen ...');
		} else {
			$('div#extendedBox'+sTarget).fadeIn('fast');
			$('div#extendLink'+sTarget+' a').html('weniger lesen ...');
		}
		return false;
	});

	$('a.tooltip').each(function()
	{
		sBar = $(this).attr('href');
		sFoo = $(this).attr('title') + " | <span class='url'>" + sBar.replace(/\//g, " / ")+"</span>";
		
		$(this).attr('title', sFoo).cluetip({
		width: 300,
		splitTitle: '|', 
		arrows: true, 
		dropShadow: false, 
		cluetipClass: 'jtip',
		clickThrough: true,
    		fx: {             
			open:       'fadeIn',
			openSpeed:  'fast'
    		},
		hoverIntent: {    
			sensitivity:  7,
			interval:     50,
			timeout:      0
		}
	});
	});
});
