$(function() {
$("#showcase1").showcase({
    animation: {type: "fade",speed:2000,autoCycle:false },   
    navigator: {
        position: "bottom-right",
        css: { padding:"0px",
               margin: "0px 10px 1px 1px" },
        showNumber: true,		
        item: {
            css: {  height:"15px",
                    "line-height":"15px",
                    width:"15px",
                    "-moz-border-radius": "5px",
                    "-webkit-border-radius": "5px",
                    backgroundColor: "#DC0700",
                    borderColor:"#ffffff",
                    margin: "4px",
                    "text-align": "center",
                    "vertical-align": "middle" ,
					"font-weight":"bold",
					"font-size":"0.8em"},
            cssHover: {
                backgroundColor: "#DC0700",
                borderColor: "#ababab" },
            cssSelected: {
                backgroundColor: "#fefefe",
                borderColor: "#777777" }
        }
		 },
    titleBar: { enabled: false}
});




}); 
