/**
 * @author werner
 */

$(function() {
	$('.description').hide();
	$('.description').each(function() {
		$(this).before('<div class="hide_link"><a href="javascript:hide(' + $(this).parent().find('.description').attr('id').substring(12) + ')">Details ausblenden</a></div>');
	} );
	$('.hide_link').hide();
	$('.link').each(function() {
		$(this).prepend('<span class="show_link"><a href="javascript:show(' + $(this).parent().find('.description').attr('id').substring(12) + ')">Details</a> | </span>');
	} );
});

function show( which )
{
	$('#description_' + which ).show('slow');
	$('#description_' + which ).parent().find('.show_link').hide();
	$('#description_' + which ).parent().find('.hide_link').show('slow');
}

function hide( which )
{
	$('#description_' + which ).hide('slow');
	$('#description_' + which ).parent().find('.show_link').show();
	$('#description_' + which ).parent().find('.hide_link').hide('slow');
}
