jQuery(function($){

  /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    send external links to new window
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
  var host=window.location.hostname;
  $("a[href^='http']:not([target])").each(function(){
    var a=$(this);
    if (a.attr('href').indexOf(host)<0)
      a.attr('target','_blank');
  });

  /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
    galleries
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
  var timeout=3000;
  $(".gallery").each(function(){
    var thistimeout=timeout+(Math.round(Math.random()*2000));
    $(this).cycle({
      fx: 'fade',
      timeout: thistimeout
    });
  });

  /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
    fbwall
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
  $('#fbwall').fbWall({
    id: '109971285738233',
    accessToken: '206158599425293|bed43195ed37ebe3306c22e1.1-1162924915|037YzMyIgWtxjDR1IOfGNSes2bY',
    showGuestEntries: false,
    showComments: false,
    max: 3,
    timeConversion: 12
  });

});
