// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults
jQuery.fn.log = function (msg) {
  console.log("%s: %o", msg, this);
  return this;
};

$(document).ready(function() {
  $('#edit-button').hover(
  	function() { $('#actionbar-button').addClass("open"); 
  	             $('#actionbar').show(); },
  	function() { $('#actionbar-button').removeClass("open"); 
  	             $('#actionbar').hide(); }
   );
 
   $('#actionbar').hover(
  	function() { $('#actionbar-button').addClass("open"); 
  	             $('#actionbar').show(); },
  	function() { $('#actionbar-button').removeClass("open"); 
  	             $('#actionbar').hide(); }
   );
   
   $("div.bb_image img").each(function(){
     if ($(this).width() > $(this).parent().width()) {
       $(this).parent().css("overflow", "scroll");
     }
   });
   
}); 