$(function () {
	  
	  $(".rotator-lower").hide();
	  $("#rotator-header a.tabs:first").addClass("selected").show();
	  $(".rotator-lower:first").show();
	  
	  $("#rotator-header .tabs").click(function() {
			$("#rotator-header a.tabs").removeClass("selected");
			$(this).addClass("selected");
			$(".rotator-lower").hide();
			
			var activeTab = $(this).attr("href");
			$(activeTab).fadeIn();
			return false;
	  });
				
});
