jQuery(document).ready(function() {
    
    // move float controls to parent, so they don't scroll
    var floatControls = $(".frp_testimonials .frp_float_control").insertBefore(".frp_testimonials .items");
    
    // remove any "empty" nodes.  These are created by hitting "enter" in the editor
	var items = $(".frp_testimonials .items").children().each(function(){
        var nodeText = $.trim($(this).html());
        if(nodeText == "&nbsp;" || nodeText == " " || !nodeText){
            $(this).remove();
        }
    });
    
    // create scroller
	if($(".frp_testimonials .items").children().length){
		$(".frp_testimonials").scrollable({ vertical: true, mousewheel: true, circular: true, speed: 10000, easing: "linear" }).autoscroll(0);
	}
});


