jQuery().ready(function(){
	
    // accordion
	jQuery('#accordion').accordion({
		autoheight: false,
		animated: 'easeslide' 
	});

    // cycle
    $('#s1').cycle({ 
        fx:     'fade', 
        speed:   500, 
        timeout: 5000, 
        next:   '#s1', 
        pause:   1 
    });

    // baloon
    $('blockquote.baloon').each(function(i){
        $(this).prepend('<div class="top"></div>');
        $(this).append('<div class="bottom"></div>');
    });



});