$(document).ready(function() {
    $('#btn_login').click(function() {
        $('#small_login_box').toggle();
        if ($('#small_login_box').is(":visible")) {
            $('#username').focus();
        }
    });

    $("#birthdate").datepicker(
        {
            minDate: new Date(1960, 1 - 1, 26),
            maxDate: '-18Y',
            changeMonth: true,
            changeYear: true,
            yearRange:"c-30:c+10"
        }
    );

    var ua = $.browser;
    if (! ua.msie && ua.version.slice(0, 3) != "7.0") {
        newYear = new Date(Date.parse("Jun 8, 2012"));
        $('#em2012').countdown({
            compact: false,
            until: newYear,
            format: 'WDHMS'
        });

    }

});

$(window).load(function () {

    setInterval("animateTop()", 3000);


//    $('#slide_1').animate({
//        width: 0
//    }, {
//        duration: 1000,
//        complete: function() {
//            $('#slide_1').hide();
//        }
//    });


//    $('#slide_2').animate({
//        width: '100%'
//    }, {
//        duration: 1000,
//        complete: function() {
////            $('#slide_2').show();
//        }
//    });

});


function animateTop() {

    var activeSlide;

    if ($('#slide_1').is(':visible')) {
        $('#slide_1').fadeOut(1000, function() {
            // Animation complete.
//            $('#slide_2').show();
        });
                $('#slide_2').fadeIn(1000, function() {
            // Animation complete.
        });
        return;
    }
    if ($('#slide_2').is(':visible')) {
        $('#slide_2').fadeOut(1000, function() {
            // Animation complete.
//            $('#slide_2').show();
        });
                $('#slide_3').fadeIn(1000, function() {
            // Animation complete.
        });
        return;
    }
    if ($('#slide_3').is(':visible')) {
        $('#slide_3').fadeOut(1000, function() {
            // Animation complete.
//            $('#slide_2').show();
        });
                $('#slide_1').fadeIn(1000, function() {
            // Animation complete.
        });
        return;
    }
   /* if ($('#slide_2').is(':visible')) {
        $('#slide_2').slideUp(1000, function() {
            // Animation complete.
            $('#slide_3').show();
        });
        return;
    }
    if ($('#slide_3').is(':visible')) {
        $('#slide_3').slideUp(1000, function() {
            // Animation complete.
            $('#slide_1').show();
        });
        return;
    }
*/
}
