$(document).ready(function()
{

    $('a.external').each(function()
    {
        $(this).attr('target', '_blank');
    });

    $('#menu a').each(function()
    {
        if($(this).attr('href') == window.location.pathname)
        {
            $(this).parent().addClass('current');
        }
    });
    
    $('#content img').each(function()
    {
        var sFloat = $(this).css('float');  
        
        if(sFloat == 'left')
        {
            $(this).css('margin-right', '10px');
        } 
        else if(sFloat == 'right')
        {
            $(this).css('margin-left', '10px');
        }  
    });                        
    
    $('#projects a.colorbox').each(function()
    {
        $(this).attr('title', $(this).attr('title') + ' <a href="#" onclick="printImage()"><img src="/images/printer.png" alt="Print deze foto" /></a>');
    }); 
    
    $('a.colorbox').colorbox();            
    
    $('a.tooltip').tooltip({showURL: false});
    
    $('#print').click(function(){
       $('#page').printArea();
       return false;
    });  
    
});
    
function printImage()
{
    $('#colorbox').printArea();
}


