﻿$(document).ready(function() {
    $('#info a.popup').each(function(index) {
        var size = jQuery.parseJSON($(this).attr('rel'));
        
        $(this).fancybox({
            'width': parseInt(size.width),
            'height': parseInt(size.height)
        })
    });
});