$(document).ready(function() {

    $('#page').ifixpng();
    $('#fp_flashplayer #fp_alternative').ifixpng();

    $('a.maplink').hover(function(event) {
        var eduInfoPos = $(this).position();
        var eduInfo = $(this).next('.edu');
        var eduInfoHeight = eduInfo.height();
        var eduInfoMaxPos = $('#map').position();

        var eduPosLeft = (eduInfoPos.left > 290) ? 290 : eduInfoPos.left;
        var eduPosTop = (eduInfoPos.top - eduInfoHeight + 24 < 0) ? 0 : eduInfoPos.top - eduInfoHeight + 24;

        eduInfo.show().css({ 'top': eduPosTop, 'left': eduPosLeft });
    })

    $('a.maplink').focus(function(event) {
        var eduInfoPos = $(this).position();
        var eduInfo = $(this).next('.edu');
        var eduInfoHeight = eduInfo.height();
        var eduInfoMaxPos = $('#map').position();

        var eduPosLeft = (eduInfoPos.left > 275) ? 275 : eduInfoPos.left;
        var eduPosTop = (eduInfoPos.top - eduInfoHeight + 24 < 0) ? 0 : eduInfoPos.top - eduInfoHeight + 24;

        eduInfo.show().css({ 'top': eduPosTop, 'left': eduPosLeft });
    })

    $('div.edu').hover(function(event) {
        $(this).prev('a.maplink').addClass('active');
        $(this).show();
    }, function() {
        $(this).hide();
        $(this).prev('a.maplink').removeClass('active');
    })

    $('div.edu a').blur(function(event) {
        $(this).parents('div.edu').hide();
        $(this).parents('div.edu').prev('a.maplink').removeClass('active');
    })

    $('#bottom :image').hover(function() {
        $(this).attr('src', '/resources/img/buttons/search_hov.gif');
    }, function() {
        $(this).attr('src', '/resources/img/buttons/search.gif');
    });

    $('#step1 :image').hover(function() {
        $(this).attr('src', '/resources/img/buttons/fortsaet_hov.gif');
    }, function() {
        $(this).attr('src', '/resources/img/buttons/fortsaet.gif');
    });

    $('a.external').attr('target', '_blank');

    var qString = document.location.href;

    if (qString.indexOf("#opentest") > 0) {
        $.nyroModalManual({
        bgColor: '#000000',
        url: '/resources/html/iframetest.htm',
            closeButton: ''
        });
    }

    $('#fp_flashplayer').flash({ swf: '/resources/flash/forside.swf', height: 530, width: 984, params: { allowFullScreen: 'true', wmode: 'opaque', flashvars: 'xmlPath=/resources/flash/xml/forside.xml'} });

    $('#flashsplash').flash({ swf: '/resources/flash/intro.swf', height: 360, width: 900, params: { flashvars: 'frontPageURL=/&soundURL=/resources/files/hz_mix2.mp3'} });

//    $('#flashtest').flash({ swf: '/resources/flash/testdigselv.swf', height: 447, width: 880, params: { flashvars: 'xmlPath=/resources/flash/xml/testdigselv.xml'} });

    $('#bottom select').change(function() {
        var mapPage = '/find-uddannelse.aspx?education=';
        var selValue = $('#bottom select option:selected').val();
        var step = '&institution=&step=2';
        location.href = mapPage + selValue + step;
    })

    $.nyroModalSettings({ closeButton: '' })
});
