var savedSelection;
$(document).ready(function() {
    $('div.container').delay(500).animate({'opacity':1},500);
    // Menu animatie
    $('a.submenu').click(function(e) {
       e.preventDefault();
       $('div.submenu ul').removeAttr('style');
       $('#'+$(this).attr('rel')).css('display','block');
       $('#menu').animate({'height': '87px'}, 300, 'easeOutSine');
    });
    var activeMenuElement = $('#menu').find('a[href="'+window.location.href.substr(window.location.host.length+7)+'"]');
    var activeMenu = activeMenuElement.parent().parent();
    if(activeMenu.parent().hasClass("submenu")) {
        activeMenu.parent().parent().addClass('active');
        activeMenu.css('display','block');
    }
    // Turn multiple selections on in IE
    /*
    $('[title]').qtip({
        content: {
           attr: 'title'
        },
        position: {
           my: 'top center', // Use the corner...
           viewport: $(window),
           at: 'bottom center' // ...and opposite corner
        },
        hide: {
            delay: 1500,
            distance: 15 // Hide it after we move 15 pixels away from the origin
        },
        style: {
           classes: 'ui-tooltip-shadow ui-tooltip-youtube'
        }
    });
    */
});
