﻿$(document).ready(function () {
    // The live() method makes sure the click event is bound to dynamically-created elements.
    $('.modal').live('click', function () {
        $.fn.colorbox({
            innerWidth: "880px",
            innerHeight: "75%",
            iframe: true,
            href: $(this).attr('href')
        });
        return false;
    });
});
