﻿	// top 10 tab script
	$(function() {
		$("#top_10 .tabs li a").each(function(i) {
			$(this).click(function() {
				top10Switch(i);
				this.blur();
				return false;
			});
		});
	});

	
	function top10Switch(num) {
		if (num == "0") {
			$("#top_10").removeClass().addClass("on-box_office");
		}
		if (num == "1") {
			$("#top_10").removeClass().addClass("on-fan_rated");
		}
	}

