//var rootPath = "http://dev3.intbuilder.com/elixia_no/";

$(document).ready(function() {	

  if($('#sliderGallery').length) { 
     $('#sliderGallery').anythingSlider(
      {         
          buildArrows         : true,
          easing: 'easeOutBack',    //easeIn/Out/InOut + Quint, Quad, Quart, Cubic, Sine, Expo, Circ, Elastic, Back, Bounce. Evnt swing eller linear.   
          theme: 'minimalist-round',   //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)
      });   
  }       
  
/*********************/     
});       //End doc ready
/*********************/

  function makeClubSelection(clubId){
      if(clubId != 0)window.location = rootPath+"club.aspx?id="+clubId;
   }

  //Funksjoner for å vise/gjemme toppmeny-dropdowns.
  function showDiv(id) {
      document.getElementById(id).style.visibility='visible';
  }
              
  function hideDiv(id) {
      document.getElementById(id).style.visibility='hidden';
  }
  
  function formatText(index, panel) {
		  return index + "";
	    }
     
   

