

$(document).ready(
		function(){
			$('#rotator').anythingSlider({
		easing: "easeOutBounce",        // Anything other than "linear" or "swing" requires the easing plugin
		autoPlay: true,                 // This turns off the entire FUNCTIONALY, not just if it starts running or not.
		delay: 5000,                    // How long between slide transitions in AutoPlay mode
		startStopped: false,            // If autoPlay is on, this can force it to start stopped
		animationTime: 1000,             // How long the slide transition takes
		hashTags: true,                 // Should links change the hashtag in the URL?
		buildNavigation: false,         // If true, builds and list of anchor links to link to each slide
		pauseOnHover: true,             // If true, and autoPlay is enabled, the show will pause on hover
		startText: "",             		// Start text
		stopText: ""
	});

		}
		
		
	);


$('li.num1 a').hover(
  function () {
    $('a.num1-hover', '').addClass("hover");
  },
  function () {
    $('a.num1-hover').removeClass("hover");
  }
);
$('li.num2 a').hover(
  function () {
    $('a.num2-hover').addClass("hover");
  },
  function () {
    $('a.num2-hover').removeClass("hover");
  }
);
$('li.num3 a').hover(
  function () {
    $('a.num3-hover').addClass("hover");
  },
  function () {
    $('a.num3-hover').removeClass("hover");
  }
);
$('li.num4 a').hover(
  function () {
    $('a.num4-hover').addClass("hover");
  },
  function () {
    $('a.num4-hover').removeClass("hover");
  }
);
$('li.num5 a').hover(
  function () {
    $('a.num5-hover').addClass("hover");
  },
  function () {
    $('a.num5-hover').removeClass("hover");
  }
);
$('li.num6 a').hover(
  function () {
    $('a.num6-hover').addClass("hover");
  },
  function () {
    $('a.num6-hover').removeClass("hover");
  }
);
$('li.num7 a').hover(
  function () {
    $('a.num7-hover').addClass("hover");
  },
  function () {
    $('a.num7-hover').removeClass("hover");
  }
);
$('li.num8 a').hover(
  function () {
    $('a.num8-hover').addClass("hover");
  },
  function () {
    $('a.num8-hover').removeClass("hover");
  }
);
$('li.num9 a').hover(
  function () {
    $('a.num9-hover').addClass("hover");
  },
  function () {
    $('a.num9-hover').removeClass("hover");
  }
);
$('li.num10 a').hover(
  function () {
    $('a.num10-hover').addClass("hover");
  },
  function () {
    $('a.num10-hover').removeClass("hover");
  }
);