$(document).ready(function()
{
    $('a[rel="_blank"]').click(function(event)
    {
        var newWindow = window.open(event.currentTarget, '_blank');
        newWindow.focus();
        event.preventDefault();
    });

    $('a.box, a.right_box').click(function(event)
    {

        var content = '';

        if($(this).hasClass('right_box'))
            content = $(this).parents('.right_box').find('.ref_content');
        else
            content = $(this).parents('.item').find('.content');

        var image = content.find('var').html();
        content.find('var').replaceWith('<img src="'+ image +'" />');

        $.fancybox(
            content.html(),
            {
                'width': 700,
                'height': 540,
                'autoDimensions'	: false,
                'showCloseButton': true,
                'titleShow': false
            }
            );

        event.preventDefault();
    });
    
     $('a.box_web').click(function(event)
    {

        var content = '';

        if($(this).hasClass('right_box'))
            content = $(this).parents('.right_box').find('.ref_content');
        else
            content = $(this).parents('.item').find('.content');

        var image = content.find('var').html();
        content.find('var').replaceWith('<img src="'+ image +'" />');

        $.fancybox(
            content.html(),
            {
                'width': 600,
                'height': 632,
                'autoDimensions'	: false,
                'showCloseButton': true,
                'titleShow': false
            }
            );

        event.preventDefault();
    });

    $('#logo').click(function()
    {window.location="http://www.dwise.nl";});

});


