$(document).ready(function(){
  //target blank
  $('a[rel="external"], a[href^=http]').each(function(){
    if(this.href.indexOf(location.hostname) == -1) { 
      $(this).attr('target', '_blank');
       }
   });
   //Placeholder tweek
   $('input[placeholder],textarea[placeholder]').placeholder();
})
