﻿// Instruction to wait for the page to be ready
// jQueryの $ 参照を無効にします。
        jQuery.noConflict();

        // jQuery を $j に割り当てます。
        var $j = jQuery;

$j(document).ready(function() {
	// Setup the bouncers for all 'textarea' elements, configure the clickable bar to be at the top
	// and also open the second bouncer
	$j('#news_textarea').bounce({bottom: false});
		//.bounceOpen(2);
	$j('#specialtextarea').bounceOpen();
	// Close the wait instruction
});

