// jQuery must have been loaded by now!


$(document).ready(function () {

    // first, include a general stylesheet
    $('head').prepend('<link rel="stylesheet" type="text/css" href="http://stefan.schallerl.com/project-prettyfier/project-prettyfier.css">');

    // add the header menu

    var headerMenuPts = [
        '<a href="http://stefan.schallerl.com/">portfolio</a>',
        '<a href="http://stefan.schallerl.com/projekte">projects</a>',
        '<a href="http://www.github.com/schnalle">github</a>',
        '<a href="http://wehrlos.strain.at">blog</a>',
        '<a href="http://twitter.com/sirmonko">twitter</a>',
    
    ];

    var headerMenu = 
        '<div id="headerMenu"><input type="button" id="btnGloblNav" value="Global Nav">' +
        '<div id="globalNavMenu">' + headerMenuPts.join('') + '</div></div>';

    $('body').append(headerMenu);

    $('#globalNavMenu').hide();

    $('#btnGloblNav').click(function () {
        if ($('#globalNavMenu').css('display') == 'none') {
            $('#globalNavMenu').slideDown('slow');

        } else {
            $('#globalNavMenu').slideUp('slow');
        }
    });


});
