$(document).ready(function() {

  // Slideshow
  $('.anythingSlider').anythingSlider({
		hashTags: false,
		animationTime: 600,
		startStopped: true
	});
  
  // Drop-Down
  function addMega(){
    $(this).addClass("hovering");
  }

  function removeMega(){
    $(this).removeClass("hovering");
  }
  
  var megaConfig = {
     interval: 200,
     sensitivity: 4,
     over: addMega,
     timeout: 200,
     out: removeMega
	};

  $("li.mega").hoverIntent(megaConfig)
  
  
  // Tooltip
  $("#world_map_regions a").cluetip({
    width: 400,
  	local: true,
  	sticky: true,
  	topOffset: -50,
  	leftOffset: -50,
  	activation: 'click',
  	showTitle: false
  });

  
  // Tabs
  $(".tabs_container").tabs();
  
  
  // Gallery
  var usehistory = $.browser.safari ? false : true;
  
  $('.gallery').galleria({
  	insert: '#gallery_enlarged',
  	history: 0
  });


  // Star Rating
  $(".rating_select").stars({
  	inputType: "select",
  	captionEl: $("#stars-cap")
  });
  



});
