$(function() {
  $("a[rel='colorbox']").colorbox({slideshow:true});
});

$(document).ready(function(){
  $('#full_tweets').twit('KlimmaniaTC', {
    icon: true,
    text: true,
    limit: 25,
    label: '',
    title: ''
  });
  
  $('#small_tweets').twit('KlimmaniaTC', {
    icon: false,
    text: true,
    limit: 5,
  });  
});

function autoIframe(frameId){
  try {
    frame       = document.getElementById(frameId);
    innerDoc    = (frame.contentDocument) ? frame.contentDocument : frame.contentWindow.document;
    heightToSet = innerDoc.body.scrollHeight + 50

    $('#mainIframe').height(heightToSet);
    $('#mainwrap').height(heightToSet);
  } catch(err){
    window.status = err.message;
  }
}

