﻿/*
$(document).ready(function() {
    $("select option").removeAttr('selected');
});

$(window).unload(function() {
    $("select option:first").attr('selected','selected');
});
*/



function Redirect(dropdown) {
    var target = $("#" + dropdown);

    if (target.val() != 'undefined')
        window.location = target.val();
}



$(document).ready(function() {


    $(".iframefancybox").fancybox({
        'width': 950,
        'height': 590,
        'autoScale': false,
        'transitionIn': 'none',
        'transitionOut': 'none',
        'type': 'iframe',
        scrolling: 'no'
    });
    

});

