$(document).ready(function(){
  // Highlight code
  $('pre.code').highlight({source:0, zebra:1, indent:'space', list:'ol'});
  
  $.foobar({
    "positioning" : "fixed",
    "backgroundColor": "#aacd6e",
        "positionSocial": "left",
    "leftHtml" : "",
    "social": {
      "profiles": [{
          "name": "facebook",
          "url": "http://www.facebook.com/furryfrog",
          "image": "images/social/facebook.png"
        },{
          "name": "twitter",
          "url": "http://www.twitter.com/furryfrog",
          "image": "images/social/twitter.png"
      },{
          "name": "LinkedIn",
          "url": "http://uk.linkedin.com/in/furryfrog" ,
          "image": "http://www.linkedin.com/img/webpromo/btn_in_20x15.png"
      }]
    }
  });
  
   
  $('.demo-delay').click(function(e) {
    e.preventDefault();
    $('.demo-current').removeClass('demo-current');
    $.foobar({
      "positioning" : "fixed", 
      "display" : "delayed",
      "displayDelay" : 20000,
      "backgroundColor" : "#aacd6e;",
      "messages": ["This foobar is only shown 2 seconds after the page loads"]
    });
    $(this).addClass('demo-current');
    $('.in-action').css({'position':'fixed'});
    alert('Wait 2 seconds...');
  });         
  
  
  
  $('.demo-twitter').click(function(e) {
    e.preventDefault();
    $('.demo-current').removeClass('demo-current');
    $.foobar({
      "positioning" : "fixed", 
      "backgroundColor" : "#aacd6e;",
      "messages": ["Check out my tweets..."],
      "twitter": {
        "enabled": true,
        "user": "furry frog",
        "maxTweets": 5
      }
    });
    $(this).addClass('demo-current');
    $('.in-action').css({'position':'fixed'});
  });
  
  $(".modal").facebox();
  
});



