﻿$(document).ready(function() {
    $("a.colorbox_photo").colorbox({opacity:"0.75", photo:true, maxHeight:"75%", maxWidth:"75%"});
    
    $("a.colorbox_website").colorbox({ opacity:"0.75", width:"75%", height:"75%", iframe:true, title: function(){
        var url = $(this).attr('href');
        return '<a href="'+url+'" target="_blank">Open In New Window</a>';
        }});
        
    $("a.colorbox_map").colorbox({opacity:"0.75", width:"75%", height:"75%"});
    
    $("a.colorbox_contact_map").colorbox({opacity:"0.75", iframe:true, innerWidth:"700px", innerHeight:"415px"}); 
    $("a.colorbox_newsletter_signup").colorbox({opacity:"0.75", iframe:true, innerWidth:"650px", innerHeight:"410px"}); 
});