$(document).ready(function() {
  
  $(".l33").click(function(){ 
   // $(this).children(".loginbox").slideToggle(300);
   $(".loginwrapper").children(".loginbox").slideToggle(300);
  });
  
   $('#sliderGallery').anythingSlider(
    {         buildArrows         : true,
              addWmodeToObject : "transparent",
              easing: 'easeOutBack',    //easeIn/Out/InOut + Quint, Quad, Quart, Cubic, Sine, Expo, Circ, Elastic, Back, Bounce. Evnt swing eller linear.   
              theme: 'minimalist-round',
              animationTime: 2000,    //Benytter meg ikke av themes. Fyller inn denne pga. at jeg bruker en modifisert versjon av denne themen.
  		        navigationFormatter: formatText       // Details at the top of the file on this use (advanced use)
    }); 
    
});

function formatText(index, panel) {

          return index + "";

        }
        
function drawConfirmBox(text) {
  if(confirm(text))
  {window.location.href = "?intshopcmd=clearcart"}
  

}




    
   

