/*
 * Den Wert für die Anzeigen in hours, minutes und seconds auf die gewünschte Zeit ändern
 * Eignet sich gut für Verkaufs- und SignUp-Seiten auf denen nach Ablauf einer gewissen Zeit z.B.
 * ein Beazhlbutton oder Anmeldeformular eingeblendet werden soll. Z.B. Video startet automatisch - Laufzeit 10 Minuten
 * nach 8 Minuten und dem "Sales spin" wird der Bazahlbutton eingeblendet.
 * 
 * Copyright (c) 2009 http://nilisis.com
 *
 * Das Script darf unverändert und auf eigene Gefahr benutzt werden!
 *
 */
       // Change these values for the content within the "buttons" div to appear at this time.
       // This example would appear in 1 minutes and 25 seconds after the page loads.
       var hours = 0;
       var minutes = 1;
       var seconds = 15;

       // Start by converting hours to milliseconds
       var time = hours * 60 * 60 * 1000;

       // Add minutes converted to milliseconds and add to total time
       time += minutes * 60 * 1000;

       // Add seconds to total time after converting to milliseconds
       time += seconds * 1000;

       $(document).ready(function(){
               $("#buttons").oneTime(time, function() {
                       $("#buttons").css("display", "block");
               });
       });

