$(document).ready(function(){

/* LIEFERADRESSE ZEIGEN */
$("a#lieferadr").click(function(event){
event.preventDefault();

$(".liefer").fadeIn("slow");
});

 /* WARENKORB BESTAETIGUNG */
$("a.hinzufuegen").click(function() {
var ziel = $("a.hinzufuegen").attr("href");
$("div#success").fadeIn('slow');
setTimeout('window.location.href = "' + ziel + '"', 2000);
return false;         
});


});