$(document).ready(function(){
    //$('#main').pngFix();
    
    // Links met rel="external" moeten in een nieuw venster worden geopend
    $('A[rel="external"]').click( function() {
        window.open(jQuery(this).attr('href') );
        return false;
    });

    // Edit in place toolbar
    $('#eipToolbar').css({'opacity': "0.9"});    
    
    /* Foto_hover in module Bedrijven */
    $('.foto_hover').css({'opacity': "0.5"});
    $('.foto_hover').hover(function () {
            $(this).fadeTo("fast", 1);
        }, function () {
            $(this).fadeTo("fast", 0.5);
    });
    
    $('.foto_hover').click(function () {
        $image =  $(this).attr('src').replace('images/cropped/95/95','images/resized/297');
        if ($image!=$('#foto_uitgelicht').attr('src')) {          
            $("#foto_uitgelicht").fadeTo("slow", 0, function(){
                $('#foto_uitgelicht').attr('src', $image);
                $("#foto_uitgelicht").fadeTo("slow", 1);       
            });
        }   
    });

   //When the link that triggers the message is clicked fade in overlay/msgbox  
   if(typeof $(".view_overlay").colorbox == 'function') {
        $(".view_overlay").colorbox({width:"924px", height:"620px"});
   }
});
