/*******************************************************************************
Author: sascha.scholz@actra.ch
Update: 20.05.2009
*******************************************************************************/

$(document).ready(function() {
	$('a.delete').click(function() {
    return confirm("Wirklich löschen? - Bitte mit OK bestätigen.");
  });
  $('.herstellen').click(function() {
    return confirm("Möchten Sie den Eintrag wirklich wieder herstellen?\nBitte mit OK bestätigen.");
  });
  $('.cancel').click(function() {
    return confirm("Möchten Sie wirklich abbrechen?\nBitte mit OK bestätigen.");
  });
   $('.external').click(function() {
    open(this.href);
		return false;
  });
});

$(document).ready(function() {
	$('table tr:even').addClass('even');
	$('table tr:odd').addClass('odd');
});

/*
$(document).ready(function() {
  $('a[href=#page]').click(function() {
    $('html, body').animate({scrollTop:0}, 'slow');
    return false;
  });
});
*/

$(document).ready(function() {
  $('#info-zuschlaege').hide();
  $('a.zuschlaegeinfo').click(function() {
    $('#info-zuschlaege').slideToggle({opacity: 'show'}, 'slow');
  });
});


$(document).ready(function() {
  $('#details dl:last').addClass('last');
});





