$(document).ready(function() {
    
    // Alle links met rel="external" in een nieuw venster openen
    $("a[rel=external]").each(function(i){
        this.target="_blank";
    });
    
    $("a[href=#print]").click(function(event) { event.preventDefault(); window.print(); });
    
    $("a.toggle.active").hide();
    
     $("a.toggle.big").click(function(event) { 
         event.preventDefault(); 
         $("body").css({ fontSize:'100%'});
         $("a.toggle.normal").css({display:"inline"});
         $("a.toggle.big").css({display:"none"});
     });     
     $("a.toggle.normal").click(function(event) { 
         event.preventDefault(); 
         $("body").css({ fontSize:'70%'});
         $("a.toggle.big").css({display:"inline"});
         $("a.toggle.normal").css({display:"none"});
     });
    
    $('#swis_check_field').val('swis_check_ok');
});


