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

$(document).ready(function(){
  // Replace fonts using Cufon
  Cufon.replace('h1', { fontFamily: 'ss_mahtog_bold' });
  Cufon.replace('h2', { fontFamily: 'ss_mahtog_book' });
  Cufon.replace('h3', { fontFamily: 'ss_mahtog_book' });
  
  // Show the flash message by sliding down from top of window
  $('#flashMessage').slideDown('slow');
  
  // Auto hide the flash message after 5 seconds
  $(function() {
    setTimeout(function() {
      $('#flashMessage').slideUp('slow');
    }, 5000);
  });
  
  // Hides the flash message if clicked
  $('#flashMessage').click(function () {
    $(this).slideUp('slow');
  });
});
