﻿// functions.js
function iframe_colorbox() {

    jQuery(".iframe").colorbox({ width: "490px", height: "440px", iframe: true });
    //alert(jQuery.support.boxModel);
}

function image_colorbox(disableTitle) {
    jQuery(".colorbox").colorbox({
        title: disableTitle
    });
}

function bookmark_link() {
    jQuery("#trigger div a").click(function() {
        return false;
    });
}
