/* prototype.js の $() を優先する */
jQuery.noConflict();

jQuery(document).ready(function($){
  // 初期化することを書く
  // ここでは jQuery 側の $() が使える
});
