// SOME SHIT //
$(document).ready(function(){  
  $("div#slide").showcase({
      animation: { type: "slideLeft" },
      titleBar: { autoHide: false },
       navigator: {
        position: "top-left",
        css: { padding:"0px",
               margin: "0px 0px 1px 1px" },
        showNumber: true,
        item: {
            css: {
                  color: "#ffffff",
                  border:"none",
                  "-moz-border-radius": "0px",
                  "-webkit-border-radius": "0px",
                  backgroundColor: "transparent",
                  "background-image": "none",
                  borderColor:"#323232",
                  "text-align": "center",
                  "vertical-align": "middle" 
                  },
            cssHover: {
                 backgroundColor: "transparent",
                 border:"none",
                 color: "#97bf0d",
                 "background-image": "none"
                  },
                
            cssSelected: {
              "background-image": "url(/layouts/wilaria/active.png)",
              backgroundColor: "transparent",
              border:"none",
              color: "#000000"
              }
          }
    },
    titleBar: { enabled: false }
  }); 
});

