$(document).ready(function(){

  /* ColorBox event to elements
  ********************/
  $('article img').each(function(){
	  $("a.colorboxi").colorbox({transition:"none", height:"auto"});
  });
  
  /*Protect email
  **********************/
  // loop through all elements with a class of email
  $(".email").each(function(){
    // get original email text
    var original = $(this).html();
    // reverse original email text
    var reversed = original.split("").reverse().join("");
    // place result in current element.
    $(this).html(reversed);
  });

}); // document.ready
