/*  ContentFlowAddOn_white, version 1.1 
 *  (c) 2008 Sebastian Kutsch
 *  <http://www.jacksasylum.eu/ContentFlow/>
 *
 *  This file is distributed under the terms of the MIT license.
 *  (see http://www.jacksasylum.eu/ContentFlow/LICENSE)
 */

new ContentFlowAddOn('white', {

    init: function() {
        this.addStylesheet();
    },
    ContentFlowConf: {
        onclickActiveItem: function(item) { window.location.href = $(item.caption).find("a").attr("href"); },
        reflectionType: "client-side",   // client-side, server-side, none
        reflectionColor: "#ffffff", // none, transparent, overlay or hex RGB CSS style #RRGGBB
        maxItemHeight: 400,
        relativeItemPosition: "top center",
        contentPosition: "top",
        visibleItems: 5
    }
});



