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


jQuery(document).ready(function() {
  jQuery('#cssdropdown li.section').hover(
    function() {
      var content = jQuery('div.content', this);
      content.css('display', 'block');
      var edge = jQuery(this).position().left-jQuery('#cssdropdown').position().left+content.width();
      if (edge > 950)
        content.css('margin-left', 905-edge);
    },
    function() { jQuery('div.content', this).css('display', 'none');
  });
  
  jQuery('input.autofocus, textarea.autofocus').focus();
  // jQuery hint plugin
  jQuery('input:text, textarea').hint();
});