// Progress bar

                        var progress_key = '';

                        $(document).ready(function() {
                                $("#pb1").progressBar({ barImage: 'images/progress.png', showText: true} );
                        });



// Countdown

                $(document).ready( function(){

                                // Handle the countdown timer
                                var theYear = parseInt( 2011 ); // year
                                var theDay = parseInt( 25 );        // day
                                var theMonth = parseInt( 11 );        // month
                                var theEnd = new Date(theYear, theMonth - 1, theDay);

                                $('#countdown').countdown({until: theEnd, format: 'dHMS', regional: 'de-DE' });

                        });

// Notify slider

        $(document).ready(function(){

    $(".notify_but a").click(function(){
        $(this).next("div").slideToggle("fast")
        .siblings("div:visible").slideUp("fast");
        $(this).toggleClass("active");
        $(this).siblings("a").removeClass("active");
    });

        });

