$(document).ready(function(){  
  $("div#slide").showcase({
      animation: { type: "slideLeft" },
      titleBar: { autoHide: false },
       navigator: {        
        position: "top-left",
        css: { padding:"0px",
               margin: "0px 0px 1px 0px",
               "border-radius":"0px 5px",
               "-moz-border-radius":"0px 5px" },         
        showNumber: true,
        item: {
            css: {
                  color: "#333",
                  "border-width":"0px",
                  "-moz-border-radius": "0px",
                  "-webkit-border-radius": "0px",
                  backgroundColor: "transparent",
                  "background-image": "none",
                  borderColor:"#999",
                  "text-align": "center",
                  "vertical-align": "middle",
                  "line-height":"14px"
                  },
            cssHover: {
                 color: "#b50000",
                 backgroundColor: "transparent",
                 "border-width":"0px",
                 "background-image": "none"
                  },                
            cssSelected: {
              backgroundColor: "transparent",
              "border-width":"0px",       
              color: "#820000"
              }
          }
    }
  }); 
});

