jQuery(document).ready(function($) {

    var speed = 500;


    $.simpledropdown("#dropdown1");

    $('div#dropdown1 ul li a').click(function() {
        window.location = $(this).attr('href');
        return false;
    });


    $('a.hide').click(function() {

        jQuery.cookie('tpHeaderState', 'hidden', { expires: 1, path: '/' });

        $('li.drop').hide();
        
        $('a#hideButton').slideUp('fast', function() {

            $('#TP_demo_header').animate({
                'marginTop': '-58px'
              }, speed, 'linear', function() {
                  $('div#smallHeader').slideDown('fast');
              }
            );

        });

        return false;
    });

    $('a.show').click(function() {

        jQuery.cookie('tpHeaderState', 'visible', { expires: 1, path: '/' });

        $('div#smallHeader').slideUp('fast', function() {

            $('#TP_demo_header').animate({
                'marginTop': '0px'
            }, speed, 'linear', function() {
                  $('a#hideButton').slideDown('fast');
            });
        });

        return false;
    });

});
