
(function($) {
$(function() {
    if ($("#featured ul li").length) {
        $("#featured ul").roundabout({
            easing: "easeOutInCirc",
            duration: 600
        }).fadeIn(500);
    }
    if ($("ul#folio_scroller li").length) {
        $("ul#folio_scroller").roundabout({
            easing: "easeOutInCirc",
            shape: "waterWheel",
            duration: 600
        }).fadeIn(500);
    }
    $("textarea, input, select, checkbox").each(function(i, v) {$o = $(this);
        if ($o.attr("style") !== undefined) {$o.removeAttr("style");
        }
        if ($o.is("textarea")) {$o.attr({
                cols: 1,
                rows: 1
            });
        }
        if ($o.attr("size") !== undefined) {$o.attr("size", 1);
        }
    });
});
})(jQuery);
