$(document).ready(function() {
  $(".textElement h3").each(function(){
    $(this).colorbox({
      inline: true,
      href: $(this).siblings(".white_content").find("div"),
      width: 700,
      maxHeight: $(window).height() - 100,
      title: $(this).text().replace("View ", ""),
      opacity: 0.5,
      initialWidth: 50,
      initialHeight: 50
    });
  });
  
  $("a[href^='http://']").each(function(){
    $(this).colorbox({
      iframe: true,
      width: $(window).width() - 50,
      height: $(window).height() - 100,
      opacity: 0.5,
      initialWidth: 50,
      initialHeight: 50
    });
  });
});
