// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

$(document).ready( function(){
  $('#post_category_name').autocomplete('/categories.js');  
});

$(document).ready( function() {
    $.beautyOfCode.init({
        baseUrl: 'http://alexgorbatchev.com/pub/sh/current/',
        brushes: ['Xml', 'JScript', 'CSharp', 'Plain', 'Java']
    });
});

// Initialize fancybox on document ready
// TODO change this to handle things the way you want, DEPENDENT new design
// $(document).ready(function() {
// 
//  /* This is basic - uses default settings */
//  
//  $("a#single_image").fancybox();
//  
//  /* Using custom settings */
//  
//  $("a#inline").fancybox({
//      'hideOnContentClick': true
//  });
// 
//  $("a.group").fancybox({
//      'zoomSpeedIn':      300, 
//      'zoomSpeedOut': 300, 
//      'overlayShow':      false
//  });
// });