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

function loadingInfo(eId){
       var height = Element.getHeight(eId);
       var width = Element.getWidth(eId);
       width -=10;
       var cont = "<div style='height:"+height+"px; width:"+width+"px;'><img src=\'/images/ajax-loader.gif\' /> loading...</div>";
       Element.update(eId,cont)
}