$(document).ready(function() {
    $("#showcase_right").showcase({
        css: {
            padding: "0",
            position: "relative",
            overflow: "hidden",
            border: "none",
            width: "650px",
            height: "300px"
        },
        animation: {
            type: "fade"
        },
        titleBar: {
            enabled: true,
            autoHide: false
        },
        navigator: {
        position: "top-left",
        css: { padding: "0px",
            margin: "14px 0px 4px 4px"
        },
        showNumber: true,
        item: {
            css: { height: "16px",
                "line-height": "16px",
                width: "16px",
                "-moz-border-radius": "2px",
                "-webkit-border-radius": "2px",
                backgroundColor: "#383838",
                borderColor: "#323232",
                margin: "0px 1px",
                padding: "0px",
                color: "#fff",
                "text-align": "center",
                "vertical-align": "middle"
            },
            cssHover: {
                backgroundColor: "#ababab",
                borderColor: "#ababab"
            },
            cssSelected: {
                backgroundColor: "#FFE40C",
                borderColor: "#FFE40C",
                color: "#00265A"
            }
        }
    }
});
});

